mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-08-21 18:00:16 +00:00
LibThread: Introduce a new threading library
This library is meant to provide C++-style wrappers over lower level APIs such as syscalls and pthread_* functions, as well as utilities for easily running pieces of logic on different threads.
This commit is contained in:
parent
d5f3487203
commit
e1a6f8a27d
Notes:
sideshowbarker
2024-07-19 12:31:27 +09:00
Author: https://github.com/bugaevc
Commit: e1a6f8a27d
Pull-request: https://github.com/SerenityOS/serenity/pull/486
Reviewed-by: https://github.com/awesomekling
9 changed files with 211 additions and 3 deletions
|
@ -19,10 +19,11 @@ build_targets=""
|
|||
build_targets="$build_targets ../DevTools/IPCCompiler"
|
||||
build_targets="$build_targets ../DevTools/FormCompiler"
|
||||
|
||||
# Build LibC, LibCore and LibIPC before IPC servers, since they depend on it.
|
||||
# Build LibC, LibCore, LibIPC and LibThread before IPC servers, since they depend on them.
|
||||
build_targets="$build_targets ../Libraries/LibC"
|
||||
build_targets="$build_targets ../Libraries/LibCore"
|
||||
build_targets="$build_targets ../Libraries/LibIPC"
|
||||
build_targets="$build_targets ../Libraries/LibThread"
|
||||
|
||||
# Build IPC servers before their client code to ensure the IPC definitions are available.
|
||||
build_targets="$build_targets ../Servers/AudioServer"
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue