]> granicus.if.org Git - apache/commitdiff
If apr_lock() or apr_unlock() fail, write a log message before bailing
authorJeff Trawick <trawick@apache.org>
Fri, 1 Dec 2000 17:41:26 +0000 (17:41 +0000)
committerJeff Trawick <trawick@apache.org>
Fri, 1 Dec 2000 17:41:26 +0000 (17:41 +0000)
out.

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@87146 13f79535-47bb-0310-9956-ffa450edef68

server/mpm/prefork/prefork.c

index 6bee0821c60139e9b66f4807152f24aac567bcc4..0ee89c94f1628946ae9d490b6be2a51f9470c383 100644 (file)
@@ -291,13 +291,19 @@ static void accept_mutex_init(apr_pool_t *p)
 static void accept_mutex_on(void)
 {
     apr_status_t rv = apr_lock(accept_lock);
-    ap_assert(!rv);
+    if (rv != APR_SUCCESS) {
+        ap_log_error(APLOG_MARK, APLOG_EMERG, rv, NULL, "couldn't grab the accept mutex");
+        exit(APEXIT_CHILDFATAL);
+    }
 }
 
 static void accept_mutex_off(void)
 {
     apr_status_t rv = apr_unlock(accept_lock);
-    ap_assert(!rv);
+    if (rv != APR_SUCCESS) {
+        ap_log_error(APLOG_MARK, APLOG_EMERG, rv, NULL, "couldn't release the accept mutex");
+        exit(APEXIT_CHILDFATAL);
+    }
 }
 
 /* On some architectures it's safe to do unserialized accept()s in the single