[Python-checkins] r80863 - python/branches/signalfd-issue8407/Doc/library/signal.rst

jean-paul.calderone python-checkins at python.org
Thu May 6 05:27:16 CEST 2010


Author: jean-paul.calderone
Date: Thu May  6 05:27:15 2010
New Revision: 80863

Log:
Point to the pthread_sigmask man page as well

Modified:
   python/branches/signalfd-issue8407/Doc/library/signal.rst

Modified: python/branches/signalfd-issue8407/Doc/library/signal.rst
==============================================================================
--- python/branches/signalfd-issue8407/Doc/library/signal.rst	(original)
+++ python/branches/signalfd-issue8407/Doc/library/signal.rst	Thu May  6 05:27:15 2010
@@ -289,7 +289,8 @@
 .. function:: sigprocmask(how, mask)
 
    Set the signal mask for the process.  The old signal mask is returned.
-   Availability: Unix (See the Unix man page :manpage:`sigprocmask(2)`.)
+   Availability: Unix (See the Unix man page :manpage:`sigprocmask(2)` and
+   :manpage:`pthread_sigmask(2)`.)
 
    If *how* is :const:`signal.SIG_BLOCK`, the signals in the mask are added
    to the set of blocked signals.


More information about the Python-checkins mailing list