From bd6bd2f8902c222e2b399195ada70f2ece881b0f Mon Sep 17 00:00:00 2001 From: Art Cancro Date: Thu, 4 Nov 1999 02:05:02 +0000 Subject: [PATCH] * Added 'number of worker threads' to site config screen --- webcit/ChangeLog | 4 +++- webcit/siteconfig.c | 6 ++++++ 2 files changed, 9 insertions(+), 1 deletion(-) diff --git a/webcit/ChangeLog b/webcit/ChangeLog index 409ecc95b..6965a4a33 100644 --- a/webcit/ChangeLog +++ b/webcit/ChangeLog @@ -1,4 +1,7 @@ $Log$ +Revision 1.105 1999/11/04 02:05:02 ajc +* Added 'number of worker threads' to site config screen + Revision 1.104 1999/10/25 02:25:09 ajc * Shuffled around the room editing commands @@ -306,4 +309,3 @@ Sun Dec 6 19:50:55 EST 1998 Art Cancro 1998-12-03 Nathan Bryant * webserver.c: warning fix - diff --git a/webcit/siteconfig.c b/webcit/siteconfig.c index ac93a1aa9..e178a1733 100644 --- a/webcit/siteconfig.c +++ b/webcit/siteconfig.c @@ -149,6 +149,11 @@ void display_siteconfig(void) wprintf("", buf); wprintf("\n"); break; + case 22: + wprintf("Number of worker threads"); + wprintf("", buf); + wprintf("\n"); + break; } } @@ -195,6 +200,7 @@ void siteconfig(void) serv_printf("%s", bstr("c_logpages")); serv_printf("%d", bstr("c_createax")); serv_printf("%d", bstr("c_maxmsglen")); + serv_printf("%d", bstr("c_worker_threads")); serv_printf("000"); display_success("System configuration has been updated."); } -- 2.30.2