summaryrefslogtreecommitdiff
path: root/src/sys
diff options
context:
space:
mode:
authorS.J.R. van Schaik <stephan@synkhronix.com>2021-12-02 02:57:23 -0500
committerGitHub <noreply@github.com>2021-12-02 02:57:23 -0500
commit578ba1d8e12bd0f69df339d61485e41bc1703d67 (patch)
treeda17c44c0f157468d8c7c55fd3f081ef8284b068 /src/sys
parented33507c694caef88cacdf51fc04516faea7fdc3 (diff)
parent055818a5f4f678e8a075604d990d60e6a99f08d8 (diff)
downloadnix-578ba1d8e12bd0f69df339d61485e41bc1703d67.zip
Merge branch 'nix-rust:master' into freebsd-fix
Diffstat (limited to 'src/sys')
-rw-r--r--src/sys/signal.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/sys/signal.rs b/src/sys/signal.rs
index e8c79d33..61bdc74a 100644
--- a/src/sys/signal.rs
+++ b/src/sys/signal.rs
@@ -868,8 +868,8 @@ pub fn sigprocmask(how: SigmaskHow, set: Option<&SigSet>, oldset: Option<&mut Si
/// is sent to all processes exclusing system processes.
/// - If less than `-1`, the signal is sent to all processes whose
/// process group ID is equal to the absolute value of `pid`.
-/// * `signal` - Signal to send. If 0, error checking if performed but no
-/// signal is actually sent.
+/// * `signal` - Signal to send. If `None`, error checking is performed
+/// but no signal is actually sent.
///
/// See Also
/// [`kill(2)`](https://pubs.opengroup.org/onlinepubs/9699919799/functions/kill.html)