open5gs/lib/core/include/arch/unix/core_arch_semaphore.h

13 lines
225 B
C

#ifndef __CORE_ARCH_SEMAPHORE_H__
#define __CORE_ARCH_SEMAPHORE_H__
#include "core.h"
#include "core_semaphore.h"
typedef struct _semaphore_t {
sem_t *semaphore;
} semaphore_t;
#endif /* __CORE_ARCH_SEMAPHORE_H__ */