next up previous contents
Next: Semaphore Library & Scheduling Up: Semaphore Library Previous: Semaphore Wait   Contents

Semaphore Signal

int sema_signal(struct sema * sem);
sema_signal is the function for signalling the semaphore. It atomically increases the count of the semaphore pointed to by sem.

Soumyadeb Mitra 2002-08-07