diff --git a/syscall/process.rs b/syscall/process.rs index c4f846b..3a511fb 100644 --- a/syscall/process.rs +++ b/syscall/process.rs @@ -82,10 +82,6 @@ pub fn clone(flags: usize, stack_base: usize) -> Result { pid = context.id; } - println!("Clone {}", pid); - - unsafe { asm!("xchg bx, bx" : : : : "intel", "volatile"); } - unsafe { context::switch(); } Ok(pid)