11 lines
138 B
C
11 lines
138 B
C
|
#ifndef __PSEM_POSIX_H__
|
||
|
#define __PSEM_POSIX_H__
|
||
|
|
||
|
#include <semaphore.h>
|
||
|
|
||
|
struct psem {
|
||
|
sem_t *sem;
|
||
|
};
|
||
|
|
||
|
#endif /* __PSEM_POSIX_H__ */
|