| 85 | ////////////////////////////////////////////////////////////////////////// |
| 86 | |
| 87 | void master_trigger::service_main(void* ctx) |
| 88 | { |
| 89 | master_trigger* mt = (master_trigger *) ctx; |
| 90 | acl_assert(mt != NULL); |
| 91 | |
| 92 | #ifndef ACL_WINDOWS |
| 93 | if (mt->daemon_mode_) { |
| 94 | acl_watchdog_pat(); |
| 95 | } |
| 96 | #endif |
| 97 | mt->on_trigger(); |
| 98 | } |
| 99 | |
| 100 | void master_trigger::service_pre_jail(void* ctx) |
| 101 | { |
nothing calls this directly
no test coverage detected