User Activity

Looking at the file "syscalls.c" I found the following line:The implementation of "_exit()" calls "_kill(status, -1)".Shouldn't it be "_kill(-1, status)" instead?Note: Because "_kill()" is implemented as dummy by default, this line has no effect unle...