bottleneck testcase based on rubbos
[bottlenecks.git] / rubbos / app / httpd-2.0.64 / server / mpm / prefork / 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 5
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 10
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 5
39 #endif
40
41 /* File used for accept locking, when we use a file */
42 #ifndef DEFAULT_LOCKFILE
43 #define DEFAULT_LOCKFILE DEFAULT_REL_RUNTIMEDIR "/accept.lock"
44 #endif
45
46 /* Where the main/parent process's pid is logged */
47 #ifndef DEFAULT_PIDLOG
48 #define DEFAULT_PIDLOG DEFAULT_REL_RUNTIMEDIR "/httpd.pid"
49 #endif
50
51 /*
52  * Interval, in microseconds, between scoreboard maintenance.
53  */
54 #ifndef SCOREBOARD_MAINTENANCE_INTERVAL
55 #define SCOREBOARD_MAINTENANCE_INTERVAL 1000000
56 #endif
57
58 /* Number of requests to try to handle in a single process.  If <= 0,
59  * the children don't die off.
60  */
61 #ifndef DEFAULT_MAX_REQUESTS_PER_CHILD
62 #define DEFAULT_MAX_REQUESTS_PER_CHILD 10000
63 #endif
64
65 #endif /* AP_MPM_DEFAULT_H */