1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-28 06:17:34 +00:00

LibPthread: Implement semaphore functions

This commit is contained in:
Gunnar Beutner 2021-04-14 04:29:39 +02:00 committed by Andreas Kling
parent f2ff8f2658
commit ea6d0aa1d4
4 changed files with 73 additions and 15 deletions

View file

@ -1,6 +1,7 @@
set(SOURCES
pthread.cpp
pthread_once.cpp
semaphore.cpp
)
serenity_libc(LibPthread pthread)