summaryrefslogtreecommitdiff
path: root/DevTools
diff options
context:
space:
mode:
authorAndreas Kling <awesomekling@gmail.com>2019-11-13 21:49:24 +0100
committerAndreas Kling <awesomekling@gmail.com>2019-11-13 21:49:24 +0100
commit69ca9cfd78da8e27a958db1656b75bb9d1886e85 (patch)
treec212e54e963f17cc8112cee81d58f3fc409b7127 /DevTools
parent4fe2ee0221ee8bf457fe2b20b095b1b1af520b86 (diff)
downloadserenity-69ca9cfd78da8e27a958db1656b75bb9d1886e85.zip
LibPthread: Start working on a POSIX threading library
This patch adds pthread_create() and pthread_exit(), which currently simply wrap our existing create_thread() and exit_thread() syscalls. LibThread is also ported to using LibPthread.
Diffstat (limited to 'DevTools')
-rw-r--r--DevTools/HackStudio/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/DevTools/HackStudio/Makefile b/DevTools/HackStudio/Makefile
index e4bc07f538..97756dac10 100644
--- a/DevTools/HackStudio/Makefile
+++ b/DevTools/HackStudio/Makefile
@@ -25,7 +25,7 @@ DEFINES += -DUSERLAND
all: $(APP)
$(APP): $(OBJS)
- $(LD) -o $(APP) $(LDFLAGS) $(OBJS) -lvt -lhtml -lmarkdown -lgui -ldraw -lthread -lcore -lc
+ $(LD) -o $(APP) $(LDFLAGS) $(OBJS) -lvt -lhtml -lmarkdown -lgui -ldraw -lthread -lpthread -lcore -lc
.cpp.o:
@echo "CXX $<"; $(CXX) $(CXXFLAGS) -o $@ -c $<