From: Jim Jagielski Date: Sat, 23 Nov 2013 20:29:55 +0000 (+0000) Subject: Just critically warn people... but keep pushing through. X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=c2b7a0c4a19e98181a6d497428a83297a4abfafe;p=thirdparty%2Fapache%2Fhttpd.git Just critically warn people... but keep pushing through. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1544876 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/server/mpm/event/event.c b/server/mpm/event/event.c index 9da5e650223..0caa5920ea1 100644 --- a/server/mpm/event/event.c +++ b/server/mpm/event/event.c @@ -3057,8 +3057,8 @@ static int event_pre_config(apr_pool_t * pconf, apr_pool_t * plog, i = apr_atomic_dec32(&foo); if (i >= 0) { ap_log_error(APLOG_MARK, APLOG_CRIT, 0, NULL, APLOGNO(02405) - "atomics not working as expected"); - return HTTP_INTERNAL_SERVER_ERROR; + "atomics not working as expected - Event MPM may not work"); + /* return HTTP_INTERNAL_SERVER_ERROR; */ } rv = apr_pollset_create(&event_pollset, 1, plog, APR_POLLSET_THREADSAFE | APR_POLLSET_NOCOPY); diff --git a/server/mpm/eventopt/eventopt.c b/server/mpm/eventopt/eventopt.c index 9c80e387204..b2effab24ef 100644 --- a/server/mpm/eventopt/eventopt.c +++ b/server/mpm/eventopt/eventopt.c @@ -3033,8 +3033,8 @@ static int event_pre_config(apr_pool_t * pconf, apr_pool_t * plog, i = apr_atomic_dec32(&foo); if (i >= 0) { ap_log_error(APLOG_MARK, APLOG_CRIT, 0, NULL, APLOGNO(02406) - "atomics not working as expected"); - return HTTP_INTERNAL_SERVER_ERROR; + "atomics not working as expected - EventOpt MPM may not work"); + /* return HTTP_INTERNAL_SERVER_ERROR; */ } rv = apr_pollset_create(&event_pollset, 1, plog, APR_POLLSET_WAKEABLE|APR_POLLSET_NOCOPY);