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
00036 int sem_del(SEM *sem);
00037
00047 void P(SEM *sem);
00048
00057 void V(SEM *sem);
00058
00059
00060 #endif