Skip to content
Snippets Groups Projects
Commit ae0aebd0 authored by Robin Randhawa's avatar Robin Randhawa
Browse files

aarch64: clone: Return from clone syscall

No CLONE_STACK functionality yet.
parent 67ec6c23
No related branches found
No related tags found
2 merge requests!161Wip clone and misc fixes,!156WIP: aarch64 support
......@@ -129,7 +129,8 @@ pub fn syscall(a: usize, b: usize, c: usize, d: usize, e: usize, f: usize, bp: u
#[cfg(target_arch = "aarch64")]
{
//TODO: CLONE_STACK
clone(b, bp).map(ContextId::into)
let ret = clone(b, bp).map(ContextId::into);
ret
}
#[cfg(target_arch = "x86_64")]
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment