删除SysFork中的CLONE_SIGHAND flag

This commit is contained in:
zhushengle 2021-02-27 17:51:32 +08:00 committed by Gitee
parent e351799d39
commit 5b03c42d9a
1 changed files with 1 additions and 1 deletions

View File

@ -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)