diff options
author | Andreas Kling <awesomekling@gmail.com> | 2019-07-14 10:19:51 +0200 |
---|---|---|
committer | Andreas Kling <awesomekling@gmail.com> | 2019-07-14 10:19:51 +0200 |
commit | f1d6a37d5dca1593e78e39a33714730dc0348224 (patch) | |
tree | 60cbd17c7de1e004b4adb028395418c6c1d7ae70 /Libraries/LibCore/Makefile | |
parent | ad7ec2bbc717901ca63b504feff0711975f1f6f6 (diff) | |
download | serenity-f1d6a37d5dca1593e78e39a33714730dc0348224.zip |
LibCore: Add CThread, a simple thread abstraction object.
Currently this is only a simple wrapper around create_thread() that
remembers the thread ID of the spawned thread.
Diffstat (limited to 'Libraries/LibCore/Makefile')
-rw-r--r-- | Libraries/LibCore/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Libraries/LibCore/Makefile b/Libraries/LibCore/Makefile index 2e119ee71f..c49f42ff08 100644 --- a/Libraries/LibCore/Makefile +++ b/Libraries/LibCore/Makefile @@ -3,6 +3,7 @@ include ../../Makefile.common OBJS = \ CArgsParser.o \ CIODevice.o \ + CThread.o \ CFile.o \ CSocket.o \ CLocalSocket.o \ |