diff options
author | Astrid Malo <kess@apache.org> | 2003-06-25 22:58:40 +0200 |
---|---|---|
committer | Astrid Malo <kess@apache.org> | 2003-06-25 22:58:40 +0200 |
commit | f46db1cfb17a3d121fb635eedc74ee34097c3179 (patch) | |
tree | 39cdb788dd301fbd6cb2c59b7a533a1a8e3391e5 /docs/manual/mod | |
parent | Ben's streamy PROPFIND patch has been backported. (diff) | |
download | apache2-f46db1cfb17a3d121fb635eedc74ee34097c3179.tar.xz apache2-f46db1cfb17a3d121fb635eedc74ee34097c3179.zip |
markup improvement
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@100363 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'docs/manual/mod')
-rw-r--r-- | docs/manual/mod/mpm_common.html.en | 16 | ||||
-rw-r--r-- | docs/manual/mod/mpm_common.xml | 2 |
2 files changed, 17 insertions, 1 deletions
diff --git a/docs/manual/mod/mpm_common.html.en b/docs/manual/mod/mpm_common.html.en index 1ced2d3096..19a393173a 100644 --- a/docs/manual/mod/mpm_common.html.en +++ b/docs/manual/mod/mpm_common.html.en @@ -103,6 +103,22 @@ accepting requests on network sockets</td></tr> <p>If you want to find out the compile time chosen default for your system, you may set your <code class="directive"><a href="../mod/core.html#loglevel">LogLevel</a></code> to <code>debug</code>. Then the default <code class="directive">AcceptMutex</code> will be written into the <code class="directive"><a href="../mod/core.html#errorlog">ErrorLog</a></code>.</p> + <div class="warning"><h3>Warning</h3> + <p>On most systems, when the <code>pthread</code> option + is selected, if a child process terminates abnormally + while holding the <code>AcceptCntl</code> mutex the + server will stop responding to requests. When this + occurs, the server will require a manual restart to + recover.</p> + <p>Solaris is a notable exception as it provides a + mechanism, used by Apache, which usually allows the + mutex to be recovered after a child process terminates + abnormally while holding a mutex.</p> + <p>If your system implements the + <code>pthread_mutexattr_setrobust_np()</code> function, + you may be able to use the <code>pthread</code> option safely.</p> + </div> + </div> <div class="top"><a href="#page-header"><img alt="top" src="../images/up.gif" /></a></div> <div class="directive-section"><h2><a name="CoreDumpDirectory" id="CoreDumpDirectory">CoreDumpDirectory</a> <a name="coredumpdirectory" id="coredumpdirectory">Directive</a></h2> diff --git a/docs/manual/mod/mpm_common.xml b/docs/manual/mod/mpm_common.xml index ac6ba7da41..ebd7c0dbcf 100644 --- a/docs/manual/mod/mpm_common.xml +++ b/docs/manual/mod/mpm_common.xml @@ -63,7 +63,7 @@ accepting requests on network sockets</description> >AcceptMutex</directive> will be written into the <directive module="core">ErrorLog</directive>.</p> - <note type="warning"><strong>Warning:</strong> + <note type="warning"><title>Warning</title> <p>On most systems, when the <code>pthread</code> option is selected, if a child process terminates abnormally while holding the <code>AcceptCntl</code> mutex the |