dgaudet 98/02/17 03:28:29
Modified: src/main http_main.c
Log:
Oh foo. I put unblock_alarms() after the setjmp(), so when a timeout
occured the child would go to alarms_blocked = -1, and would have
alarms blocked forever.
Revision Changes Path
1.291 +3 -3 apache-1.3/src/main/http_main.c
Index: http_main.c
===================================================================
RCS file: /export/home/cvs/apache-1.3/src/main/http_main.c,v
retrieving revision 1.290
retrieving revision 1.291
diff -u -r1.290 -r1.291
--- http_main.c 1998/02/14 12:40:27 1.290
+++ http_main.c 1998/02/17 11:28:28 1.291
@@ -2959,6 +2959,9 @@
child_init_modules(pchild, server_conf);
+ /* done with the initialization critical section */
+ unblock_alarms();
+
(void) update_child_status(my_child_num, SERVER_READY, (request_rec *)
NULL);
/*
@@ -2981,9 +2984,6 @@
DosSetSignalExceptionFocus(0, &ulTimes);
}
#endif
-
- /* done with the initialization critical section */
- unblock_alarms();
while (1) {
BUFF *conn_io;