diff options
author | Eric Covener <covener@apache.org> | 2010-03-12 19:49:26 +0100 |
---|---|---|
committer | Eric Covener <covener@apache.org> | 2010-03-12 19:49:26 +0100 |
commit | c81cbf5592886f9a88fcce30800a527c1a369dda (patch) | |
tree | 6e5cd044940f1e545fa9fa52fdd77cd10a620981 /server/mpm/prefork | |
parent | API docs are generated via 'make dox'. (diff) | |
download | apache2-c81cbf5592886f9a88fcce30800a527c1a369dda.tar.xz apache2-c81cbf5592886f9a88fcce30800a527c1a369dda.zip |
reduce the warning level in the bindprocessor() call used to make sure child
processes aren't bound to the CPU the parent is running on.
In recent levels of AIX, the parent isn't implicitly bound to a CPU
(so the children don't inherit it), and when the AIX WPAR feature is enabled
this call can return EPERM, even though the child process is already unbound.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@922392 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'server/mpm/prefork')
-rw-r--r-- | server/mpm/prefork/prefork.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/server/mpm/prefork/prefork.c b/server/mpm/prefork/prefork.c index 336db7d77a..5e1a677b45 100644 --- a/server/mpm/prefork/prefork.c +++ b/server/mpm/prefork/prefork.c @@ -743,7 +743,7 @@ static int make_child(server_rec *s, int slot) int status = bindprocessor(BINDPROCESS, (int)getpid(), PROCESSOR_CLASS_ANY); if (status != OK) { - ap_log_error(APLOG_MARK, APLOG_WARNING, errno, + ap_log_error(APLOG_MARK, APLOG_DEBUG, errno, ap_server_conf, "processor unbind failed %d", status); } #endif |