diff options
author | Jim Jagielski <jim@apache.org> | 2007-09-10 16:54:01 +0200 |
---|---|---|
committer | Jim Jagielski <jim@apache.org> | 2007-09-10 16:54:01 +0200 |
commit | 5437e234f7b9a6c299fff8aac9805033373286af (patch) | |
tree | f8e74fd89ca1a0569e57780ba2989e2e6baf2ea6 /include/scoreboard.h | |
parent | Don't send spurious "100 Continue" response lines. (diff) | |
download | apache2-5437e234f7b9a6c299fff8aac9805033373286af.tar.xz apache2-5437e234f7b9a6c299fff8aac9805033373286af.zip |
Maintain the illusion. It's not worth my time or
energy to care about this anymore.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@574269 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'include/scoreboard.h')
-rw-r--r-- | include/scoreboard.h | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/include/scoreboard.h b/include/scoreboard.h index 6f8b42e394..fc9fadf7ff 100644 --- a/include/scoreboard.h +++ b/include/scoreboard.h @@ -45,9 +45,6 @@ extern "C" { #define DEFAULT_SCOREBOARD "logs/apache_runtime_status" #endif -/* for proxy_worker_stat */ -#include "../modules/proxy/mod_proxy.h" - /* Scoreboard info on a process is, for now, kept very brief --- * just status value and pid (the latter so that the caretaker process * can properly update the scoreboard when a process dies). We may want @@ -145,7 +142,11 @@ struct process_score { }; /* stuff which is lb specific */ -typedef proxy_worker_stat lb_score; +typedef struct lb_score lb_score; +struct lb_score { + /* TODO: make a real stuct from this */ + unsigned char data[1024]; +}; /* Scoreboard is now in 'local' memory, since it isn't updated once created, * even in forked architectures. Child created-processes (non-fork) will |