rbb 00/02/10 15:16:14
Modified: src/include ap_ac_config.h Log: We need to make sure we are using signals that interrupt system calls. This was keeping graceful restart from working in the prefork MPM. Currently, this is a real hack, but I am hoping to get a better fix in place tomorrow. Revision Changes Path 1.8 +2 -0 apache-2.0/src/include/ap_ac_config.h Index: ap_ac_config.h =================================================================== RCS file: /home/cvs/apache-2.0/src/include/ap_ac_config.h,v retrieving revision 1.7 retrieving revision 1.8 diff -u -r1.7 -r1.8 --- ap_ac_config.h 2000/01/21 01:25:24 1.7 +++ ap_ac_config.h 2000/02/10 23:16:12 1.8 @@ -231,4 +231,6 @@ #undef USE_MMAP_FILES #endif +#define signal(s, f) ap_signal(s, f) + #endif /* AP_AC_CONFIG_H */