mirror of
https://github.com/fluencelabs/musl
synced 2025-06-28 22:22:01 +00:00
implement POSIX semaphores
This commit is contained in:
9
src/thread/sem_post.c
Normal file
9
src/thread/sem_post.c
Normal file
@ -0,0 +1,9 @@
|
||||
#include <semaphore.h>
|
||||
#include "pthread_impl.h"
|
||||
|
||||
int sem_post(sem_t *sem)
|
||||
{
|
||||
if (!a_fetch_add(sem->__val, 1))
|
||||
__wake(sem->__val, 1, 0);
|
||||
return 0;
|
||||
}
|
Reference in New Issue
Block a user