martin 98/02/22 12:52:35
Modified: src CHANGES
src/main http_main.c
Log:
Apache will, when started with the -X (single process) debugging flag,
honor the SIGINT or SIGQUIT signals again now. This capability got lost
a while ago during OS/2 signal handling changes.
Reviewed by: Dean Gaudet
Revision Changes Path
1.656 +4 -0 apache-1.3/src/CHANGES
Index: CHANGES
===================================================================
RCS file: /home/cvs/apache-1.3/src/CHANGES,v
retrieving revision 1.655
retrieving revision 1.656
diff -u -u -r1.655 -r1.656
--- CHANGES 1998/02/22 15:00:50 1.655
+++ CHANGES 1998/02/22 20:52:22 1.656
@@ -1,5 +1,9 @@
Changes with Apache 1.3b6
+ *) Apache will, when started with the -X (single process) debugging flag,
+ honor the SIGINT or SIGQUIT signals again now. This capability got lost
+ a while ago during OS/2 signal handling changes.
+
*) [PORT] Work around the fact that NeXT runs on more than the
m68k chips in mod_status [Scott Anguish and Timothy Luoma
<[EMAIL PROTECTED]>]
1.294 +2 -0 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.293
retrieving revision 1.294
diff -u -u -r1.293 -r1.294
--- http_main.c 1998/02/21 01:38:32 1.293
+++ http_main.c 1998/02/22 20:52:33 1.294
@@ -3291,6 +3291,8 @@
if (one_process) {
signal(SIGHUP, just_die);
+ signal(SIGINT, just_die);
+ signal(SIGQUIT, SIG_DFL);
signal(SIGTERM, just_die);
child_main(slot);
}