diff options
author | William A. Rowe Jr <wrowe@apache.org> | 2000-05-17 00:35:21 +0000 |
---|---|---|
committer | William A. Rowe Jr <wrowe@apache.org> | 2000-05-17 00:35:21 +0000 |
commit | 9bfb956e51add33872f42fc86ba6258e2cbfe143 (patch) | |
tree | 34a1d23030fab66f934a7f36eaeb0ad08c0bc91b /os | |
parent | 71cb49bb0ab9c67b64c75bab2c7d96d61e506e70 (diff) | |
download | httpd-9bfb956e51add33872f42fc86ba6258e2cbfe143.tar.gz |
Radical overhaul of the Apache-2.0/Win32 mpm <-> service schema.
1) Services and Registry are not part of the core Apache operations,
so registry.c and service.c are moved into Apache.exe - assuring
the service control layers of NT and 95 are truly isolated.
2) Isolation can't be complete, we need to know when the mpm is
fully initialized. A new pointer to a no-arg function returning
void is provided for this purpose, ap_mpm_init_complete. It is
only called if overridden with a non-NULL value prior to invoking
apache_main.
3) Control+C, Control+Break are handled on both WinNT and Win9x.
4) The window close, logoff and shutdown events are handled on WinNT.
5) The beginnings of a Win95 service startup are provided, -k startservice
but this is horribly incomplete since Win95 will NOT report shutdown.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@85235 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'os')
-rw-r--r-- | os/win32/os.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/os/win32/os.h b/os/win32/os.h index bee53b9171..7c246d6392 100644 --- a/os/win32/os.h +++ b/os/win32/os.h @@ -109,7 +109,7 @@ #define USE_MMAP_SCOREBOARD #define HAVE_CANONICAL_FILENAME #define HAVE_DRIVE_LETTERS -#define HAVE_SENDFILE +#define HAVE_SENDFILE_UNKNOWN typedef int uid_t; typedef int gid_t; |