bottleneck testcase based on rubbos
[bottlenecks.git] / rubbos / app / httpd-2.0.64 / server / mpm / netware / 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 servers 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_DAEMON
24 #define DEFAULT_START_DAEMON 1
25 #endif
26
27 /* Maximum number of *free* server processes --- more than this, and
28  * they will die off.
29  */
30
31 #ifndef DEFAULT_MAX_FREE_DAEMON
32 #define DEFAULT_MAX_FREE_DAEMON 1
33 #endif
34
35 /* Minimum --- fewer than this, and more will be created */
36
37 #ifndef DEFAULT_MIN_FREE_DAEMON
38 #define DEFAULT_MIN_FREE_DAEMON 1
39 #endif
40
41 /* Limit on the threads per process.  Clients will be locked out if more than
42  * this  * HARD_SERVER_LIMIT are needed.
43  *
44  * We keep this for one reason it keeps the size of the scoreboard file small
45  * enough that we can read the whole thing without worrying too much about
46  * the overhead.
47  */
48 #ifndef HARD_THREAD_LIMIT
49 #define HARD_THREAD_LIMIT 2048
50 #endif
51
52 #ifndef DEFAULT_THREADS_PER_CHILD
53 #define DEFAULT_THREADS_PER_CHILD 50
54 #endif
55
56 /* Number of threads to spawn off by default --- also, if fewer than
57  * this free when the caretaker checks, it will spawn more.
58  */
59 #ifndef DEFAULT_START_THREADS
60 #define DEFAULT_START_THREADS DEFAULT_THREADS_PER_CHILD
61 #endif
62
63 /* Maximum number of *free* threads --- more than this, and
64  * they will die off.
65  */
66
67 #ifndef DEFAULT_MAX_FREE_THREADS
68 #define DEFAULT_MAX_FREE_THREADS 100
69 #endif
70
71 /* Minimum --- fewer than this, and more will be created */
72
73 #ifndef DEFAULT_MIN_FREE_THREADS
74 #define DEFAULT_MIN_FREE_THREADS 10
75 #endif
76
77 /* Check for definition of DEFAULT_REL_RUNTIMEDIR */
78 #ifndef DEFAULT_REL_RUNTIMEDIR
79 #define DEFAULT_REL_RUNTIMEDIR "logs"
80 #endif
81
82 /* File used for accept locking, when we use a file */
83 /*#ifndef DEFAULT_LOCKFILE
84   #define DEFAULT_LOCKFILE DEFAULT_REL_RUNTIMEDIR "/accept.lock"
85   #endif
86 */
87
88 /* Where the main/parent process's pid is logged */
89 /*#ifndef DEFAULT_PIDLOG
90   #define DEFAULT_PIDLOG DEFAULT_REL_RUNTIMEDIR "/httpd.pid"
91   #endif
92 */
93
94 /*
95  * Interval, in microseconds, between scoreboard maintenance.
96  */
97 #ifndef SCOREBOARD_MAINTENANCE_INTERVAL
98 #define SCOREBOARD_MAINTENANCE_INTERVAL 1000000
99 #endif
100
101 /* Number of requests to try to handle in a single process.  If <= 0,
102  * the children don't die off.
103  */
104 #ifndef DEFAULT_MAX_REQUESTS_PER_CHILD
105 #define DEFAULT_MAX_REQUESTS_PER_CHILD 0
106 #endif
107
108 #endif /* AP_MPM_DEFAULT_H */