Open itewqq opened 2 years ago
The 2nd parameter of kill here should be 10, not 1<<10. Otherwise you'll get 1<<(1<<10) in os/src/syscall/process.rs#sys_kill
kill
10
1<<10
1<<(1<<10)
The 2nd parameter of
kill
here should be10
, not1<<10
. Otherwise you'll get1<<(1<<10)
in os/src/syscall/process.rs#sys_kill