changes...plus a little optimization
[IRC.git] / Robust / src / Runtime / oooJava / rcr_runtime.h
1 #ifndef RCR_RUNTIME_H
2 #define RCR_RUNTIME_H
3
4 extern __thread struct trqueue * TRqueue;
5
6 void workerTR(void *);
7
8 #define RCRSIZE 32
9
10 struct rcrRecord {
11   int count;
12   int index;
13   int flag;
14   int array[RCRSIZE];
15 };
16 #endif