MCPcopy Create free account
hub / github.com/apache/httpd / pod_signal_internal

Function pod_signal_internal

server/mpm_unix.c:504–517  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

502}
503
504static apr_status_t pod_signal_internal(ap_pod_t *pod)
505{
506 apr_status_t rv;
507 char char_of_death = '!';
508 apr_size_t one = 1;
509
510 rv = apr_file_write(pod->pod_out, &char_of_death, &one);
511 if (rv != APR_SUCCESS) {
512 ap_log_error(APLOG_MARK, APLOG_WARNING, rv, ap_server_conf, APLOGNO(00053)
513 "write pipe_of_death");
514 }
515
516 return rv;
517}
518
519AP_DECLARE(apr_status_t) ap_mpm_podx_open(apr_pool_t *p, ap_pod_t **pod)
520{

Callers 1

ap_mpm_pod_signalFunction · 0.85

Calls 1

ap_log_errorFunction · 0.50

Tested by

no test coverage detected