Page principale   Modules   Liste des composants   Liste des fichiers   Composants   Déclarations  

psema.h

Aller à la documentation de ce fichier.
00001 
00005 #ifndef _SEMA_H
00006 #define _SEMA_H
00007 #include "phil.h"
00008 
00009 
00010 
00024 typedef struct PhilSemaphore
00025 { 
00026   volatile int counter;   
00027   PhilMutex lock;
00028   PhilCond queue;
00029 } PhilSemaphore;
00030 
00031  
00032 
00033 
00034 extern    int     PhilSemaphoreInit(PhilSemaphore * s, int i );
00035 extern     int     PhilSemaphoreDestroy(PhilSemaphore * s);
00036 extern int            PhilSemaphoreP( PhilSemaphore * s );
00037 extern int          PhilSemaphoreV( PhilSemaphore  *s );
00038 
00039 #endif

Généré le Thu Jan 15 15:49:02 2004 par doxygen1.2.17