This commit was manufactured by cvs2svn to create tag 'buildscript'.
[IRC.git] /
1 #ifndef THREAD_H
2 #define THREAD_H
3 #include "methodheaders.h"
4 #include <pthread.h>
5
6 extern int threadcount;
7 extern pthread_mutex_t gclock;
8 extern pthread_mutex_t gclistlock;
9 extern pthread_cond_t gccond;
10 extern pthread_mutex_t objlock;
11 extern pthread_cond_t objcond;
12 extern pthread_key_t threadlocks;
13 void initthread(struct ___Thread___ * ___this___);
14
15 struct locklist {
16   struct locklist * next;
17   struct locklist * prev;
18   struct ___Object___ * object;
19 };
20 #endif