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

Function sys_fork

user/src/syscall.rs:99–101  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

97}
98
99pub fn sys_fork() -> isize {
100 syscall(SYSCALL_FORK, [0, 0, 0])
101}
102
103pub fn sys_exec(path: &str, args: &[*const u8]) -> isize {
104 syscall(

Callers 1

forkFunction · 0.70

Calls 1

syscallFunction · 0.70

Tested by

no test coverage detected