You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
"If sig is 0, then no signal is sent, but error checking is still performed; this can be used to check
for the existence of a process ID or process group ID."
signal.rs seems to explicitly disallow the signal value to be 0, i.e.:
pubfn from_c_int(signum: libc::c_int) -> Result<Signal>{match0 < signum && signum < NSIG{
The text was updated successfully, but these errors were encountered:
signal.rs seems to explicitly disallow the signal value to be 0, i.e.:
The text was updated successfully, but these errors were encountered: