| 265 | } |
| 266 | |
| 267 | static uint64_t application_deadline_after(uint32_t timeout_ms) { |
| 268 | uint64_t now = cbm_now_ms(); |
| 269 | return now > UINT64_MAX - timeout_ms ? UINT64_MAX : now + timeout_ms; |
| 270 | } |
| 271 | |
| 272 | static _Noreturn void application_cleanup_force_terminate(const char *component) { |
| 273 | /* In production this module is daemon-owned and the host log sink flushes |
no test coverage detected