plasma-umass / browsix

Browsix is a Unix-like operating system for the browser.
Other
3.16k stars 182 forks source link

cmd: kill #11

Open bpowers opened 8 years ago

bpowers commented 8 years ago

We currently deliver the SIGCHLD signal to parents when a spawn'ed process dies. We should implement the kill(1) command.

This will require adding a new kill(2) syscall, and extending the kernel's kill function to not only terminate (in the case of SIGKILL), but dispatch a signal (as well as implementing the command kill that exercises this syscall.