dgaudet 99/06/02 11:20:40
Modified: src/main http_main.c
Log:
oops I committed that SIGUSR2 change by mistake ages ago... rev 1.433
Revision Changes Path
1.441 +1 -2 apache-1.3/src/main/http_main.c
Index: http_main.c
===================================================================
RCS file: /home/cvs/apache-1.3/src/main/http_main.c,v
retrieving revision 1.440
retrieving revision 1.441
diff -u -r1.440 -r1.441
--- http_main.c 1999/06/02 06:30:05 1.440
+++ http_main.c 1999/06/02 18:20:38 1.441
@@ -3691,7 +3691,6 @@
#endif
#endif
signal(SIGALRM, alrm_handler);
- signal(SIGUSR2, alrm_handler);
#ifdef TPF
signal(SIGHUP, just_die);
signal(SIGTERM, just_die);
@@ -4255,7 +4254,7 @@
else if (ps->last_rtime + ss->timeout_len < now) {
/* no progress, and the timeout length has been exceeded */
ss->timeout_len = 0;
- kill(ps->pid, SIGUSR2);
+ kill(ps->pid, SIGALRM);
}
}
#endif