Go to the documentation of this file.00001
00010 #ifndef SEM_H
00011 #define SEM_H
00012
00013
00015 typedef struct SEM SEM;
00016
00027 SEM *sem_init(int initVal);
00028
00039 int sem_del(SEM *sem);
00040
00050 void P(SEM *sem);
00051
00060 void V(SEM *sem);
00061
00062
00063 #endif