]> code.citadel.org Git - citadel.git/blobdiff - citadel/sysconfig.h
* Removed all of the thread cancellation cruft that is no longer necessary
[citadel.git] / citadel / sysconfig.h
index 49384e425bb413a7edc2a2e95aa6f23a6eb7094f..ff875ee394f2ab4cc52e42c349618b0f62b4c91b 100644 (file)
@@ -21,7 +21,7 @@
  * your system, define CHATLOG to the filename to be saved to.  Otherwise,
  * set CHATLOG to "/dev/null".
  */
-#define CHATLOG                "/dev/null"
+#define CHATLOG                "chat.log"
 
 /*
  * SLEEPING refers to the watchdog timer.  If a user sits idle without typing
  * editor installed, and you want to make it the default, set this to 46
  * to make it use your editor by default.
  */
-#define DEFAULT_ENTRY  4
+#define DEFAULT_ENTRY          4
+
+
+/*
+ * Logging level to use if none is specified on the command line.
+ */
+#define DEFAULT_VERBOSITY      9
+
+
+/*
+ * HOUSEKEEPING_WAKEUP is the number of seconds which pass between each pass
+ * of the housekeeping thread.  This normally happens once per minute and there
+ * isn't any good reason to change it.
+ */
+#define HOUSEKEEPING_WAKEUP    60
+
+/*
+ * We'll almost certainly want to do this more elegantly.  For now we are
+ * creating a fixed-size pool of worker threads.
+ */
+#define NUM_WORKER_THREADS     15
 
 
 /*** STRUCTURE SIZE VARIABLES ***/