bottleneck testcase based on rubbos
[bottlenecks.git] / rubbos / app / httpd-2.0.64 / server / mpm / experimental / perchild / mpm_default.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 APACHE_MPM_DEFAULT_H
18 #define APACHE_MPM_DEFAULT_H
19
20 /* Number of threads to spawn off by default --- also, if fewer than
21  * this free when the caretaker checks, it will spawn more.
22  */
23 #ifndef DEFAULT_START_THREAD
24 #define DEFAULT_START_THREAD 5
25 #endif
26
27 /* Maximum number of *free* server threads --- more than this, and
28  * they will die off.
29  */
30
31 #ifndef DEFAULT_MAX_SPARE_THREAD
32 #define DEFAULT_MAX_SPARE_THREAD 10
33 #endif
34
35 /* Minimum --- fewer than this, and more will be created */
36
37 #ifndef DEFAULT_MIN_SPARE_THREAD
38 #define DEFAULT_MIN_SPARE_THREAD 5
39 #endif
40
41 /* Number of servers to spawn off by default
42  */
43 #ifndef DEFAULT_NUM_DAEMON
44 #define DEFAULT_NUM_DAEMON 2
45 #endif
46
47 /* File used for accept locking, when we use a file */
48 #ifndef DEFAULT_LOCKFILE
49 #define DEFAULT_LOCKFILE DEFAULT_REL_RUNTIMEDIR "/accept.lock"
50 #endif
51
52 /* Where the main/parent process's pid is logged */
53 #ifndef DEFAULT_PIDLOG
54 #define DEFAULT_PIDLOG DEFAULT_REL_RUNTIMEDIR "/httpd.pid"
55 #endif
56
57 /*
58  * Interval, in microseconds, between scoreboard maintenance.
59  */
60 #ifndef SCOREBOARD_MAINTENANCE_INTERVAL
61 #define SCOREBOARD_MAINTENANCE_INTERVAL 1000000
62 #endif
63
64 /* Number of requests to try to handle in a single process.  If <= 0,
65  * the children don't die off.
66  */
67 #ifndef DEFAULT_MAX_REQUESTS_PER_CHILD
68 #define DEFAULT_MAX_REQUESTS_PER_CHILD 10000
69 #endif
70
71 #endif /* AP_MPM_DEFAULT_H */