From 7fd18c603be89d86185b58e13a82718b03bdc746 Mon Sep 17 00:00:00 2001 From: Jeff Trawick Date: Mon, 18 Mar 2002 16:39:56 +0000 Subject: [PATCH] don't check for EINTR after a call to apr_file_write(); 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 | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/server/mpm_common.c b/server/mpm_common.c index 3433698ddb..6e9f23a51d 100644 --- a/server/mpm_common.c +++ b/server/mpm_common.c @@ -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"); -- 2.40.0