Closed alexrp closed 2 years ago
With #21 done, we now only use Mono.Unix for a few system calls like read, write, isatty, kill, etc.
read
write
isatty
kill
kill in particular is troublesome. We need a way to translate PosixSignal values to native signal numbers.
PosixSignal
See: https://github.com/dotnet/runtime/issues/61889
Done in 15b7d30a23ae99351a644b78e59a36c9b03fac11.
With #21 done, we now only use Mono.Unix for a few system calls like
read
,write
,isatty
,kill
, etc.kill
in particular is troublesome. We need a way to translatePosixSignal
values to native signal numbers.