File modules/th/thread.h

  $Revision: 1.12 $

Thread module (th)
Status: NOT REVUED, NOT TESTED
Included in: modules/th/thread.c

Included Files


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; 
     int rw_count; 
   } 

Typedef th_args

typedef struct th_args th_args
struct th_args 
   { 
     void* function; 
     int sock; 
   }