implemented deque for work stealing
[IRC.git] / Robust / src / Runtime / workschedule.h
index ac496da5bf8c9a8db47ad57650779eaa4bec4164..a36683bbaa98cab9f05999a38b84afcf046951eb 100644 (file)
@@ -28,10 +28,13 @@ void workScheduleSubmit( void* workUnit );
 // should not expect to return from this
 void workScheduleBegin();
 
+
+
+
 extern int threadcount;
 extern pthread_mutex_t gclock;
 extern pthread_mutex_t gclistlock;
-extern pthread_cond_t gccond;
+extern pthread_cond_t  gccond;
 
 struct QI {
   struct QI * next;
@@ -42,4 +45,6 @@ struct QI * headqi;
 struct QI * tailqi;
 
 
+
+
 #endif /* __WORK_SCHEDULE__ */