(res_count: usize)
| 13 | sys_mutex_unlock(mutex_id); |
| 14 | } |
| 15 | pub fn semaphore_create(res_count: usize) -> isize { |
| 16 | sys_semaphore_create(res_count) |
| 17 | } |
| 18 | pub fn semaphore_up(sem_id: usize) { |
| 19 | sys_semaphore_up(sem_id); |
| 20 | } |
nothing calls this directly
no test coverage detected