| 164 | } |
| 165 | |
| 166 | void master_proc::service_pre_jail(void* ctx) |
| 167 | { |
| 168 | master_proc* mp = (master_proc *) ctx; |
| 169 | acl_assert(mp != NULL); |
| 170 | |
| 171 | #ifndef ACL_WINDOWS |
| 172 | if (mp->daemon_mode()) { |
| 173 | ACL_EVENT* eventp = acl_single_server_event(); |
| 174 | mp->set_event(eventp); |
| 175 | } |
| 176 | #endif |
| 177 | |
| 178 | mp->proc_pre_jail(); |
| 179 | } |
| 180 | |
| 181 | void master_proc::service_init(void* ctx) |
| 182 | { |
nothing calls this directly
no test coverage detected