diff options
author | Jeff Trawick <trawick@apache.org> | 2002-03-19 23:09:26 +0100 |
---|---|---|
committer | Jeff Trawick <trawick@apache.org> | 2002-03-19 23:09:26 +0100 |
commit | 32fe8d097ff4e9ab319321b796b1ca6db191097a (patch) | |
tree | 09eedfb077d5591de51b74dd9722a610c8b5f9c4 /server/mpm/worker/worker.c | |
parent | "apachectl stop" shouldn't send the gracefully-terminate char down (diff) | |
download | apache2-32fe8d097ff4e9ab319321b796b1ca6db191097a.tar.xz apache2-32fe8d097ff4e9ab319321b796b1ca6db191097a.zip |
be a little more specific in a thread-create error message
it is helpful to distinguish between a failure creating the
first thread (listener) vs. a failure creating one of n
worker threads
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@94025 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to '')
-rw-r--r-- | server/mpm/worker/worker.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/server/mpm/worker/worker.c b/server/mpm/worker/worker.c index b2a60ac08d..14ff6f5de1 100644 --- a/server/mpm/worker/worker.c +++ b/server/mpm/worker/worker.c @@ -823,7 +823,7 @@ static void * APR_THREAD_FUNC start_threads(apr_thread_t *thd, void *dummy) my_info, pchild); if (rv != APR_SUCCESS) { ap_log_error(APLOG_MARK, APLOG_ALERT, rv, ap_server_conf, - "apr_thread_create: unable to create worker thread"); + "apr_thread_create: unable to create listener thread"); /* In case system resources are maxxed out, we don't want * Apache running away with the CPU trying to fork over and * over and over again if we exit. |