* @brief Exits a critical section and restores the system's previous state. * * @note Exiting the critical section as soon as the protected operation is completed * is essential to avoid performance degradation or system deadlocks. Ensure * that every call to `sys_enter_critical` is matched with a corresponding * `sys_exit_critical` call. * * @warning Calling this function
| 4361 | * if required. |
| 4362 | */ |
| 4363 | void sys_exit_critical(void) |
| 4364 | { |
| 4365 | rt_sem_release(&critical_lock); |
| 4366 | } |
| 4367 | |
| 4368 | /* syscall: "sys_log" ret: "int" args: "const char*" "size" */ |
| 4369 | static int __sys_log_enable = 0; |
nothing calls this directly
no test coverage detected