]> granicus.if.org Git - apache/commitdiff
don't check for EINTR after a call to apr_file_write();
authorJeff Trawick <trawick@apache.org>
Mon, 18 Mar 2002 16:39:56 +0000 (16:39 +0000)
committerJeff Trawick <trawick@apache.org>
Mon, 18 Mar 2002 16:39:56 +0000 (16:39 +0000)
you'll never see it

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

server/mpm_common.c

index 3433698ddbee055547d7f02070fde8d685b0a735..6e9f23a51d2e71451e80feb5ba87c683d6818a30 100644 (file)
@@ -454,10 +454,7 @@ static apr_status_t pod_signal_internal(ap_pod_t *pod)
     char char_of_death = '!';
     apr_size_t one = 1;
 
-    do {
-        rv = apr_file_write(pod->pod_out, &char_of_death, &one);
-    } while (APR_STATUS_IS_EINTR(rv));
-
+    rv = apr_file_write(pod->pod_out, &char_of_death, &one);
     if (rv != APR_SUCCESS) {
         ap_log_error(APLOG_MARK, APLOG_WARNING, rv, ap_server_conf,
                      "write pipe_of_death");