process_shared/ext/libpsem/psem_posix.h

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__ */