mjc 96/03/29 00:35:48
Modified: src http_main.c Log: The status of a child should not be reset when the child dies. If it is then we lose all the information that child had within it and our total access counts and bytes served are meaningless. Revision Changes Path 1.14 +0 -4 apache/src/http_main.c Index: http_main.c =================================================================== RCS file: /export/home/cvs/apache/src/http_main.c,v retrieving revision 1.13 retrieving revision 1.14 diff -C3 -r1.13 -r1.14 *** http_main.c 1996/03/28 19:47:42 1.13 --- http_main.c 1996/03/29 08:35:46 1.14 *************** *** 665,674 **** #if defined(STATUS_INSTRUMENTATION) new_score_rec.last_used=time(NULL); - if (status == SERVER_DEAD) { - new_score_rec.access_count = 0; - new_score_rec.bytes_served = 0; - } #endif #if defined(HAVE_MMAP) || defined(HAVE_SHMGET) --- 665,670 ----