| 141 | } |
| 142 | |
| 143 | static void main_local_maintenance_server_bind(main_local_maintenance_context_t *context, |
| 144 | cbm_mcp_server_t *server) { |
| 145 | if (!context) { |
| 146 | return; |
| 147 | } |
| 148 | cbm_mutex_lock(&context->mutex); |
| 149 | context->server = server; |
| 150 | cbm_mutex_unlock(&context->mutex); |
| 151 | } |
| 152 | |
| 153 | static bool main_local_command_cancel(void *opaque) { |
| 154 | main_local_maintenance_context_t *context = opaque; |
no test coverage detected