| 703 | } |
| 704 | |
| 705 | static void dbd_child_init(apr_pool_t *p, server_rec *s) |
| 706 | { |
| 707 | apr_status_t rv = dbd_setup_init(p, s); |
| 708 | if (rv) { |
| 709 | ap_log_error(APLOG_MARK, APLOG_CRIT, rv, s, APLOGNO(00636) |
| 710 | "child init failed!"); |
| 711 | } |
| 712 | } |
| 713 | |
| 714 | #if APR_HAS_THREADS |
| 715 | static apr_status_t dbd_setup_lock(server_rec *s, dbd_group_t *group) |
nothing calls this directly
no test coverage detected