summaryrefslogtreecommitdiff
path: root/Userland
diff options
context:
space:
mode:
authorSergey Bugaev <bugaevc@gmail.com>2019-08-25 18:55:56 +0300
committerAndreas Kling <awesomekling@gmail.com>2019-08-26 11:31:14 +0200
commite1a6f8a27d772ad27507394aeb4a7db55d93467c (patch)
treea67bedeb5841d7deb4f2a9c5364719151eddab3b /Userland
parentd5f34872031a90bb449c4c1f9b5080f25a842238 (diff)
downloadserenity-e1a6f8a27d772ad27507394aeb4a7db55d93467c.zip
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.
Diffstat (limited to 'Userland')
-rw-r--r--Userland/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Userland/Makefile b/Userland/Makefile
index 955eb07470..ab46369c96 100644
--- a/Userland/Makefile
+++ b/Userland/Makefile
@@ -19,7 +19,7 @@ clean:
$(APPS) : % : %.o $(OBJS)
@echo "LD $@"
- @$(LD) -o $@ $(LDFLAGS) $< -lc -lgui -ldraw -laudio -lipc -lcore -lpcidb
+ @$(LD) -o $@ $(LDFLAGS) $< -lc -lgui -ldraw -laudio -lipc -lthread -lcore -lpcidb
%.o: %.cpp
@echo "CXX $<"