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

Function condvar_wait

user/src/sync.rs:30–32  ·  view source on GitHub ↗
(condvar_id: usize, mutex_id: usize)

Source from the content-addressed store, hash-verified

28 sys_condvar_signal(condvar_id);
29}
30pub fn condvar_wait(condvar_id: usize, mutex_id: usize) {
31 sys_condvar_wait(condvar_id, mutex_id);
32}

Callers 2

secondFunction · 0.85
blockMethod · 0.85

Calls 1

sys_condvar_waitFunction · 0.70

Tested by 1

secondFunction · 0.68