Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/chyyuu/os_kernel_lab
/ condvar_create
Function
condvar_create
user/src/sync.rs:24–26 ·
view source on GitHub ↗
()
Source
from the content-addressed store, hash-verified
22
sys_semaphore_down(sem_id);
23
}
24
pub fn condvar_create() -> isize {
25
sys_condvar_create(0)
26
}
27
pub fn condvar_signal(condvar_id: usize) {
28
sys_condvar_signal(condvar_id);
29
}
Callers
1
new
Method · 0.85
Calls
1
sys_condvar_create
Function · 0.70
Tested by
no test coverage detected