| 131 | } main_local_maintenance_context_t; |
| 132 | |
| 133 | static void main_local_maintenance_context_init(main_local_maintenance_context_t *context) { |
| 134 | memset(context, 0, sizeof(*context)); |
| 135 | cbm_mutex_init(&context->mutex); |
| 136 | } |
| 137 | |
| 138 | static void main_local_maintenance_context_destroy(main_local_maintenance_context_t *context) { |
| 139 | cbm_mutex_destroy(&context->mutex); |
no test coverage detected