From 69ca9cfd78da8e27a958db1656b75bb9d1886e85 Mon Sep 17 00:00:00 2001 From: Andreas Kling Date: Wed, 13 Nov 2019 21:49:24 +0100 Subject: 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. --- DevTools/HackStudio/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'DevTools') 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 $< -- cgit v1.2.3