| 502 | } |
| 503 | |
| 504 | static 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 | |
| 519 | AP_DECLARE(apr_status_t) ap_mpm_podx_open(apr_pool_t *p, ap_pod_t **pod) |
| 520 | { |
no test coverage detected