Module Name: src
Committed By: kamil
Date: Tue May 22 03:07:50 UTC 2018
Modified Files:
src/lib/libc/sys: sigaction.2
Log Message:
Minor improvement in sigaction(2)
Note that SIGCHLD covers process continued event.
Sponsored by <The NetBSD Foundation>
To generate a diff of this commit:
cvs rdiff -u -r1.49 -r1.50 src/lib/libc/sys/sigaction.2
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/lib/libc/sys/sigaction.2
diff -u src/lib/libc/sys/sigaction.2:1.49 src/lib/libc/sys/sigaction.2:1.50
--- src/lib/libc/sys/sigaction.2:1.49 Mon Jul 25 22:00:36 2016
+++ src/lib/libc/sys/sigaction.2 Tue May 22 03:07:50 2018
@@ -1,4 +1,4 @@
-.\" $NetBSD: sigaction.2,v 1.49 2016/07/25 22:00:36 wiz Exp $
+.\" $NetBSD: sigaction.2,v 1.50 2018/05/22 03:07:50 kamil Exp $
.\"
.\" Copyright (c) 1980, 1990, 1993
.\" The Regents of the University of California. All rights reserved.
@@ -29,7 +29,7 @@
.\"
.\" @(#)sigaction.2 8.2 (Berkeley) 4/3/94
.\"
-.Dd July 9, 2016
+.Dd May 22, 2018
.Dt SIGACTION 2
.Os
.Sh NAME
@@ -192,7 +192,7 @@ signal,
the
.Dv SIGCHLD
signal will be generated only when a child process exits,
-not when a child process stops.
+not when a child process stops or continues.
.It Dv SA_NOCLDWAIT
If set, the system will not create a zombie when the child exits,
but the child process will be automatically waited for.