blob: 44dec3f2442f5e36c22d3a4b81dbb638722bed67 (
plain)
1
2
3
4
5
6
7
8
9
10
|
#include <sys/builtin.h>
#include <sys/fmutex.h>
#include <sys/rmutex.h>
typedef int pthread_t;
typedef _rmutex pthread_mutex_t;
/*typedef HEV pthread_cond_t;*/
typedef unsigned long pthread_cond_t;
typedef int pthread_key_t;
typedef unsigned long pthread_attr_t;
#define PTHREADS_INCLUDED
|