| 874 | } |
| 875 | |
| 876 | static bool host_application_shutdown(host_state_t *host) { |
| 877 | if (cbm_daemon_application_shutdown(host->application, HOST_APPLICATION_SHUTDOWN_MS)) { |
| 878 | return true; |
| 879 | } |
| 880 | cbm_log_error("daemon.shutdown_timeout", "component", "operations"); |
| 881 | return false; |
| 882 | } |
| 883 | |
| 884 | static bool host_runtime_stop_free(cbm_daemon_runtime_service_t *service) { |
| 885 | if (cbm_daemon_runtime_service_state(service) != CBM_DAEMON_RUNTIME_SERVICE_EXITED) { |
no test coverage detected