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 *semCreate(int initVal);
00028
00040 int semDestroy(SEM *sem);
00041
00051 void P(SEM *sem);
00052
00061 void V(SEM *sem);
00062
00063
00064 #endif