~ubuntu-branches/ubuntu/feisty/apache2/feisty

« back to all changes in this revision

Viewing changes to server/mpm/netware/mpm_default.h

  • Committer: Bazaar Package Importer
  • Author(s): Andreas Barth
  • Date: 2006-12-09 21:05:45 UTC
  • mfrom: (0.6.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20061209210545-h70s0xaqc2v8vqr2
Tags: 2.2.3-3.2
* Non-maintainer upload.
* 043_ajp_connection_reuse: Patch from upstream Bugzilla, fixing a critical
  issue with regard to connection reuse in mod_proxy_ajp.
  Closes: #396265

Show diffs side-by-side

added added

removed removed

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