diff options
author | Greg Stein <gstein@apache.org> | 2001-02-11 00:44:40 +0000 |
---|---|---|
committer | Greg Stein <gstein@apache.org> | 2001-02-11 00:44:40 +0000 |
commit | 39793c7fca5cc9e319202966ac0d19c1a262dd34 (patch) | |
tree | 88d2b6817e73fc5433a3535387460bbaae232bca /os/beos/beosd.h | |
parent | d52904fbd694a4de6325ba539a9b2f4686264303 (diff) | |
download | httpd-39793c7fca5cc9e319202966ac0d19c1a262dd34.tar.gz |
toss the signal description stuff from unixd.[ch], beosd.h, and spmt_os2.
use the new functionality in APR.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@88079 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'os/beos/beosd.h')
-rw-r--r-- | os/beos/beosd.h | 18 |
1 files changed, 3 insertions, 15 deletions
diff --git a/os/beos/beosd.h b/os/beos/beosd.h index 62d27ea089..38d6229927 100644 --- a/os/beos/beosd.h +++ b/os/beos/beosd.h @@ -56,8 +56,8 @@ * University of Illinois, Urbana-Champaign. */ -#ifndef UNIXD_H -#define UNIXD_H +#ifndef BEOSD_H +#define BEOSD_H /* common stuff that beos MPMs will want */ @@ -84,18 +84,6 @@ void beosd_pre_config(void); const char *beosd_set_user(cmd_parms *cmd, void *dummy, char *arg); const char *beosd_set_group(cmd_parms *cmd, void *dummy, char *arg); -#if defined(NSIG) -#define NumSIG NSIG -#elif defined(_NSIG) -#define NumSIG _NSIG -#elif defined(__NSIG) -#define NumSIG __NSIG -#else -#define NumSIG 32 /* for 1998's unixes, this is still a good assumption */ -#endif - -#define INIT_SIGLIST() /* nothing */ - #define beosd_killpg(x, y) (kill (-(x), (y))) #define UNIX_DAEMON_COMMANDS \ @@ -104,4 +92,4 @@ const char *beosd_set_group(cmd_parms *cmd, void *dummy, char *arg); { "Group", beosd_set_group, NULL, RSRC_CONF, TAKE1, \ "Effective group id for this server"}, \ -#endif +#endif /* BEOSD_H */ |