summaryrefslogtreecommitdiffstats
path: root/modules/generators
diff options
context:
space:
mode:
authorJeff Trawick <trawick@apache.org>2001-05-31 20:10:04 +0200
committerJeff Trawick <trawick@apache.org>2001-05-31 20:10:04 +0200
commite47fad222b10d632a4ddba7eecda78b7f739e644 (patch)
tree6dcdc1c21711c95da38f6ebba5aef39655845ed9 /modules/generators
parenta worker being cleaned up is not processing a request; filter out such (diff)
downloadapache2-e47fad222b10d632a4ddba7eecda78b7f739e644.tar.xz
apache2-e47fad222b10d632a4ddba7eecda78b7f739e644.zip
handle the SERVER_IDLE_KILL state in some of the ExtendedStatus=On
output I don't have 100% confidence in my guess as to why some of the state labels are in bold and some aren't (e.g., "<b>Write</b>" vs. "Graceful". Hopefully any rhyme or reason to it is maintained with my change. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@89249 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'modules/generators')
-rw-r--r--modules/generators/mod_status.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/modules/generators/mod_status.c b/modules/generators/mod_status.c
index f1a689a3f0..e00cffc41e 100644
--- a/modules/generators/mod_status.c
+++ b/modules/generators/mod_status.c
@@ -591,6 +591,9 @@ static int status_handler(request_rec *r)
case SERVER_GRACEFUL:
ap_rputs("Graceful", r);
break;
+ case SERVER_IDLE_KILL:
+ ap_rputs("Dying", r);
+ break;
default:
ap_rputs("?STATE?", r);
break;
@@ -662,6 +665,9 @@ static int status_handler(request_rec *r)
case SERVER_GRACEFUL:
ap_rputs("<td>G", r);
break;
+ case SERVER_IDLE_KILL:
+ ap_rputs("<td>I", r);
+ break;
default:
ap_rputs("<td>?", r);
break;