Skip to content
Closed
Show file tree
Hide file tree
Changes from 5 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions api/src/syscall/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -428,6 +428,11 @@ pub fn handle_syscall(uctx: &mut UserContext) {
uctx.arg3(),
uctx.arg4(),
),
Sysno::clone3 => sys_clone3(
uctx,
uctx.arg0() as _, // args_ptr
uctx.arg1() as _, // args_size
),
#[cfg(target_arch = "x86_64")]
Sysno::fork => sys_fork(uctx),
Sysno::exit => sys_exit(uctx.arg0() as _),
Expand Down
Loading
Loading