File modules/th/thread.h
$Revision: 1.17 $
Thread module (th)
Status: NOT REVUED, NOT TESTED
Included in:
modules/th/thread.c
Included Files
#include <pthread.h>
Preprocessor definitions
#define READ_THREAD
Typedef rw_lock_t
typedef struct _rwlock rw_lock_t
struct _rwlock
{
pthread_mutex_t rw_mutex;
pthread_cond_t rw_cond;
pthread_cond_t w_cond;
int rw_count;
int w_count;
}