diff options
author | David Reid <dreid@apache.org> | 2001-12-25 13:24:14 +0100 |
---|---|---|
committer | David Reid <dreid@apache.org> | 2001-12-25 13:24:14 +0100 |
commit | a9eff7270cbbd088bc3d22f4ac857a9f29962bc2 (patch) | |
tree | 376bc2a12a73b216fd4579bcfee3cd225131e369 /os/beos | |
parent | unixd.h is included in mpm.h so shouldn't need to be included here as well. (diff) | |
download | apache2-a9eff7270cbbd088bc3d22f4ac857a9f29962bc2.tar.xz apache2-a9eff7270cbbd088bc3d22f4ac857a9f29962bc2.zip |
Add ap_os_killpg as well as unixd_killpg and beosd_killpg.
Move the worker MPM to use ap_os_killpg in place of unixd_killpg as
this makes it more portable.
Ryan notes that really we should be using the POD mechanism to
control death of the child processes, so this is temporary until
we have that change in place. Note added to STATUS to that effect.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@92598 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'os/beos')
-rw-r--r-- | os/beos/beosd.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/os/beos/beosd.h b/os/beos/beosd.h index b507f2b912..28e47eece5 100644 --- a/os/beos/beosd.h +++ b/os/beos/beosd.h @@ -91,6 +91,7 @@ AP_DECLARE(apr_status_t) beosd_accept(void **accepted, ap_listen_rec *lr, apr_pool_t *ptrans); #define beosd_killpg(x, y) (kill (-(x), (y))) +#define ap_os_killpg(x, y) (kill (-(x), (y))) #define BEOS_DAEMON_COMMANDS \ AP_INIT_TAKE1("User", beosd_set_user, NULL, RSRC_CONF, \ |