* pod.c (pod_signal_internal): apr_file_write() is defined to
never return EINTR, so don't check for that case.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@100541
13f79535-47bb-0310-9956-
ffa450edef68
char char_of_death = graceful ? GRACEFUL_CHAR : RESTART_CHAR;
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");