| 729 | } |
| 730 | |
| 731 | AP_DECLARE(apr_status_t) ap_mpm_pod_signal(ap_pod_t *pod) |
| 732 | { |
| 733 | apr_status_t rv; |
| 734 | |
| 735 | rv = pod_signal_internal(pod); |
| 736 | if (rv != APR_SUCCESS) { |
| 737 | return rv; |
| 738 | } |
| 739 | |
| 740 | return dummy_connection(pod); |
| 741 | } |
| 742 | |
| 743 | void ap_mpm_pod_killpg(ap_pod_t *pod, int num) |
| 744 | { |
no test coverage detected