]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
document non-BSD SIGCHLD behaviour
authorGuido van Rossum <guido@python.org>
Mon, 12 Feb 1996 23:18:51 +0000 (23:18 +0000)
committerGuido van Rossum <guido@python.org>
Mon, 12 Feb 1996 23:18:51 +0000 (23:18 +0000)
Doc/lib/libsignal.tex
Doc/libsignal.tex

index 63b671f95abfd4a8b7f952b0a4100fe17d486f33..802c4d107f185bbb899eaffc906721d68decec2f 100644 (file)
@@ -8,7 +8,10 @@ Some general rules for working with signals handlers:
 
 \item
 A handler for a particular signal, once set, remains installed until
-it is explicitly reset (i.e. Python uses the BSD style interface).
+it is explicitly reset (i.e. Python emulates the BSD style interface
+regardless of the underlying implementation), with the exception of
+the handler for \code{SIGCHLD}, which follows the underlying
+implementation.
 
 \item
 There is no way to ``block'' signals temporarily from critical
index 63b671f95abfd4a8b7f952b0a4100fe17d486f33..802c4d107f185bbb899eaffc906721d68decec2f 100644 (file)
@@ -8,7 +8,10 @@ Some general rules for working with signals handlers:
 
 \item
 A handler for a particular signal, once set, remains installed until
-it is explicitly reset (i.e. Python uses the BSD style interface).
+it is explicitly reset (i.e. Python emulates the BSD style interface
+regardless of the underlying implementation), with the exception of
+the handler for \code{SIGCHLD}, which follows the underlying
+implementation.
 
 \item
 There is no way to ``block'' signals temporarily from critical