#ifndef _UN_LINUX_H_
#define _UN_LINUX_H_
#include<pthread.h>
#include<semaphore.h>
#include<errno.h>
#include <unistd.h>

typedef pthread_t un_thread_t;
typedef pthread_mutex_t un_mutex_t;
typedef pthread_rwlock_t un_rwlock_t;
typedef pthread_once_t	un_once_t;
typedef pthread_cond_t  un_cond_t;
typedef pthread_barrier_t un_barrier_t;
typedef sem_t			un_sem_t;

#define UN_ONCE_INIT PTHREAD_ONCE_INIT

#endif
