diff --git a/syscall/process_syscall.c b/syscall/process_syscall.c index 7bb1ec90..f1ba5067 100644 --- a/syscall/process_syscall.c +++ b/syscall/process_syscall.c @@ -318,7 +318,7 @@ int SysWait(int pid, USER int *status, int options, void *rusage) int SysFork(void) { - return OsClone(CLONE_SIGHAND, 0, 0); + return OsClone(0, 0, 0); } unsigned int SysGetPPID(void)