MCPcopy Create free account
hub / github.com/chyyuu/os_kernel_lab / mutex_blocking_create

Function mutex_blocking_create

user/src/sync.rs:6–8  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

4 sys_mutex_create(false)
5}
6pub fn mutex_blocking_create() -> isize {
7 sys_mutex_create(true)
8}
9pub fn mutex_lock(mutex_id: usize) {
10 sys_mutex_lock(mutex_id);
11}

Callers

nothing calls this directly

Calls 1

sys_mutex_createFunction · 0.70

Tested by

no test coverage detected