]> code.citadel.org Git - citadel.git/blobdiff - citadel/threads.h
Changing the name of the 'Aide' access level to 'Admin'
[citadel.git] / citadel / threads.h
index d080b81e7abdff708fe6f72dd22bd0be9fe3bc0d..2119e02395ce816186c59359f81c169ec44318f7 100644 (file)
@@ -33,13 +33,15 @@ struct thread_tsd {
 extern struct thread_tsd masterTSD;
 #define TSD MyThread()
 
+extern int num_workers;
+extern int active_workers;
+extern int server_shutting_down;
+
 struct thread_tsd *MyThread(void);
 int try_critical_section (int which_one);
 void begin_critical_section (int which_one);
 void end_critical_section (int which_one);
 void go_threading(void);
-int CtdlThreadCheckStop(void);
-void CtdlThreadStopAll(void);
 void InitializeMasterTSD(void);
 void CtdlThreadCreate(void *(*start_routine)(void*));