bottleneck testcase based on rubbos
[bottlenecks.git] / rubbos / app / httpd-2.0.64 / os / beos / beosd.h
1 /* Licensed to the Apache Software Foundation (ASF) under one or more
2  * contributor license agreements.  See the NOTICE file distributed with
3  * this work for additional information regarding copyright ownership.
4  * The ASF licenses this file to You under the Apache License, Version 2.0
5  * (the "License"); you may not use this file except in compliance with
6  * the License.  You may obtain a copy of the License at
7  *
8  *     http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16
17 #ifndef BEOSD_H
18 #define BEOSD_H
19
20 #include "httpd.h"
21 #include "ap_listen.h"
22 /* common stuff that beos MPMs will want */
23
24 /* Default user name and group name. These may be specified as numbers by
25  * placing a # before a number */
26
27 #ifndef DEFAULT_USER
28 #define DEFAULT_USER "#-1"
29 #endif
30 #ifndef DEFAULT_GROUP
31 #define DEFAULT_GROUP "#"
32 #endif
33
34 typedef struct {
35     char *user_name;
36     uid_t user_id;
37     gid_t group_id;
38 } beosd_config_rec;
39 extern beosd_config_rec beosd_config;
40
41 void beosd_detach(void);
42 int beosd_setup_child(void);
43 void beosd_pre_config(void);
44 AP_DECLARE(const char *) beosd_set_user (cmd_parms *cmd, void *dummy, 
45                                          const char *arg);
46 AP_DECLARE(const char *) beosd_set_group(cmd_parms *cmd, void *dummy, 
47                                          const char *arg);
48 AP_DECLARE(apr_status_t) beosd_accept(void **accepted, ap_listen_rec *lr,
49                                       apr_pool_t *ptrans);
50
51 #define beosd_killpg(x, y)      (kill (-(x), (y)))
52 #define ap_os_killpg(x, y)      (kill (-(x), (y)))
53
54 #define BEOS_DAEMON_COMMANDS    \
55 AP_INIT_TAKE1("User", beosd_set_user, NULL, RSRC_CONF, \
56   "Effective user id for this server (NO-OP)"), \
57 AP_INIT_TAKE1("Group", beosd_set_group, NULL, RSRC_CONF, \
58   "Effective group id for this server (NO-OP)")
59
60 #endif /* BEOSD_H */