]> code.citadel.org Git - citadel.git/blobdiff - citadel/server.h
* sysdep.c: worker_thread(): Make scheduling a little more fair to higher
[citadel.git] / citadel / server.h
index 8c42ec21c95eb35fd08ac4710fde0fef9f53feb2..cc28f21515b24ce0603f1f1fd0533f01a7cb018b 100644 (file)
@@ -156,7 +156,8 @@ typedef struct CitContext t_context;
 /* Values for CitContext.state */
 enum {
        CON_IDLE,               /* This context is doing nothing */
-       CON_EXECUTING           /* This context is bound to a thread */
+       CON_READY,              /* This context is ready-to-run */
+       CON_EXECUTING,          /* This context is bound to a thread */
 };