Go to the documentation of this file.00001 #ifndef SEM_H
00002 #define SEM_H
00003
00016 typedef struct SEM SEM;
00017
00028 SEM *sem_init(int initVal);
00029
00038 int sem_del(SEM *sem);
00039
00049 void P(SEM *sem);
00050
00059 void V(SEM *sem);
00060
00061 #endif
00062