signal: Implement kill and killpg
kill and killpg have not been implemented yet. The implementation should be fairly straightforward as both Linux and RedoxOS have syscalls for kill
.
-
kill
-
killpg
The implementation of other function such as read
could be helpful as a reference. See the platform generic implementation of read
here and the platform specific implementations in platform
for linux and redox for an example of how this can be done.