stoddard 99/06/30 01:12:49
Modified: src/include httpd.h
Log:
Win32: Set HARD_SERVER_LIMIT to a more reasonable value. Mulling over the
idea of moving it to ap_config. Maybe change the name to PROCESS_LIMIT and add
a new one, THREAD_LIMIT?
Revision Changes Path
1.284 +1 -1 apache-1.3/src/include/httpd.h
Index: httpd.h
===================================================================
RCS file: /home/cvs/apache-1.3/src/include/httpd.h,v
retrieving revision 1.283
retrieving revision 1.284
diff -u -r1.283 -r1.284
--- httpd.h 1999/06/22 15:22:14 1.283
+++ httpd.h 1999/06/30 08:12:48 1.284
@@ -307,7 +307,7 @@
*/
#ifndef HARD_SERVER_LIMIT
#ifdef WIN32
-#define HARD_SERVER_LIMIT 1500
+#define HARD_SERVER_LIMIT 1024
#else
#define HARD_SERVER_LIMIT 256
#endif