| 62 | } |
| 63 | |
| 64 | bool module_is_started(struct Module* module) { |
| 65 | auto* internal = module->internal; |
| 66 | return internal != nullptr && internal->started; |
| 67 | } |
| 68 | |
| 69 | error_t module_stop(struct Module* module) { |
| 70 | LOG_I(TAG, "stop %s", module->name); |
no outgoing calls
no test coverage detected