summaryrefslogtreecommitdiff
path: root/include/scoreboard.h
diff options
context:
space:
mode:
authorNick Kew <niq@apache.org>2006-05-07 21:01:48 +0000
committerNick Kew <niq@apache.org>2006-05-07 21:01:48 +0000
commit25a2aca974f8ecf60ec4eedf39a1bc21cae222cf (patch)
treed5a9d223f65c73868500e091649bc855b94b128d /include/scoreboard.h
parentd0e7d572121ca4033b6dce36e4112a285711c400 (diff)
downloadhttpd-25a2aca974f8ecf60ec4eedf39a1bc21cae222cf.tar.gz
Tidy up scoreboard.h (Chris Darroch)
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@404849 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'include/scoreboard.h')
-rw-r--r--include/scoreboard.h14
1 files changed, 2 insertions, 12 deletions
diff --git a/include/scoreboard.h b/include/scoreboard.h
index 8b5f855d2a..a5a8c307fa 100644
--- a/include/scoreboard.h
+++ b/include/scoreboard.h
@@ -87,18 +87,8 @@ typedef enum {
SB_SHARED = 2
} ap_scoreboard_e;
-#define SB_WORKING 0 /* The server is busy and the child is useful. */
-#define SB_IDLE_DIE 1 /* The server is idle and the child is superfluous. */
- /* The child should check for this and exit gracefully. */
-
/* stuff which is worker specific */
-/***********************WARNING***************************************/
-/* These are things that are used by mod_status. Do not put anything */
-/* in here that you cannot live without. This structure will not */
-/* be available if mod_status is not loaded. */
-/*********************************************************************/
typedef struct worker_score worker_score;
-
struct worker_score {
int thread_num;
#if APR_HAS_THREADS
@@ -142,7 +132,7 @@ typedef struct {
/* stuff which the parent generally writes and the children rarely read */
typedef struct process_score process_score;
-struct process_score{
+struct process_score {
pid_t pid;
ap_generation_t generation; /* generation of this child */
ap_scoreboard_e sb_type;
@@ -153,7 +143,7 @@ struct process_score{
/* stuff which is lb specific */
typedef struct lb_score lb_score;
-struct lb_score{
+struct lb_score {
/* TODO: make a real stuct from this */
unsigned char data[1024];
};