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.
The current signature is pub fn kill(pid: pid_t, signal: Signal), and I think it should use Option<Signal>.
The text was updated successfully, but these errors were encountered:
According to the man page:
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.
The current signature is
pub fn kill(pid: pid_t, signal: Signal)
, and I think it should useOption<Signal>
.The text was updated successfully, but these errors were encountered: