1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 12:57:35 +00:00

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.
This commit is contained in:
Andreas Kling 2019-07-14 10:19:51 +02:00
parent ad7ec2bbc7
commit f1d6a37d5d
3 changed files with 48 additions and 0 deletions

View file

@ -3,6 +3,7 @@ include ../../Makefile.common
OBJS = \
CArgsParser.o \
CIODevice.o \
CThread.o \
CFile.o \
CSocket.o \
CLocalSocket.o \