Increment a named or unnamed semaphore
#include <semaphore.h> int sem_post( sem_t * sem );
libc
Use the -l c option to qcc to link against this library. This library is usually included automatically.
The sem_post() function increments the semaphore referenced by the sem argument. If any threads are currently blocked waiting for the semaphore, then one of these threads will return successfully from its call to sem_wait.
The thread to be unblocked is determined in accordance with the scheduling policies in effect for the blocked threads. The highest priority waiting thread is unblocked, and if there is more than one highest priority thread blocked waiting for the semaphore, then the highest priority thread that has been waiting the longest is unblocked.
The sem_post() function is reentrant with respect to signals, and can be called from a signal handler.
Safety: | |
---|---|
Cancellation point | No |
Interrupt handler | No |
Signal handler | Yes |
Thread | Yes |