| 1031 | } |
| 1032 | |
| 1033 | static bool runtime_worker_send_status(cbm_daemon_runtime_worker_t *worker, |
| 1034 | cbm_daemon_runtime_operation_t operation, bool success) { |
| 1035 | uint8_t payload[STATUS_RESPONSE_SIZE]; |
| 1036 | runtime_put_u32(payload, success ? 1U : 0U); |
| 1037 | return runtime_worker_send_frame(worker, CBM_DAEMON_FRAME_RESPONSE, operation, payload, |
| 1038 | (uint32_t)sizeof(payload)); |
| 1039 | } |
| 1040 | |
| 1041 | static bool runtime_application_status_is_callback_result( |
| 1042 | cbm_daemon_runtime_application_status_t status) { |
no test coverage detected