grab bag function to log commonly logged and shared info */
| 1607 | |
| 1608 | /* grab bag function to log commonly logged and shared info */ |
| 1609 | AP_DECLARE(void) ap_log_mpm_common(server_rec *s) |
| 1610 | { |
| 1611 | ap_log_error(APLOG_MARK, APLOG_DEBUG , 0, s, APLOGNO(02639) |
| 1612 | "Using SO_REUSEPORT: %s (%d)", |
| 1613 | ap_have_so_reuseport ? "yes" : "no", |
| 1614 | ap_num_listen_buckets); |
| 1615 | } |
| 1616 | |
| 1617 | AP_DECLARE(void) ap_remove_pid(apr_pool_t *p, const char *rel_fname) |
| 1618 | { |
no test coverage detected