File modules/th/thread.h

  $Revision: 1.9 $

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 wd_args_t

typedef struct _wd_args_t wd_args_t
struct _wd_args_t 
   { 
     int connected_socket; 
     pthread_t tid; 
   }