cctools
semaphore.h
1#ifndef SEMAPHORE_H
2#define SEMAPHORE_H
3
4int semaphore_create( int value );
5void semaphore_down( int s );
6void semaphore_up( int s );
7
8#endif
9