| 98 | } |
| 99 | |
| 100 | rt_err_t lwp_mutex_take_safe(rt_mutex_t mtx, rt_int32_t timeout, int flags) |
| 101 | { |
| 102 | LWP_DEF_RETURN_CODE(rc); |
| 103 | rc = _mutex_take_safe(mtx, timeout, flags); |
| 104 | LWP_RETURN(rc); |
| 105 | } |
| 106 | |
| 107 | rt_err_t lwp_mutex_release_safe(rt_mutex_t mtx) |
| 108 | { |
no test coverage detected