summaryrefslogtreecommitdiffstats
path: root/Doc/lib/libsignal.tex
diff options
context:
space:
mode:
authorSkip Montanaro <skip@pobox.com>2002-02-15 20:36:19 (GMT)
committerSkip Montanaro <skip@pobox.com>2002-02-15 20:36:19 (GMT)
commit8d1fdafd8917087229bc4ec59964ef8309ccad27 (patch)
treee118adc801a686d279ea0e893f1f772413e07185 /Doc/lib/libsignal.tex
parent960d7a68d0d38e71778a0a56ecc8e266da7d332f (diff)
downloadcpython-8d1fdafd8917087229bc4ec59964ef8309ccad27.zip
cpython-8d1fdafd8917087229bc4ec59964ef8309ccad27.tar.gz
cpython-8d1fdafd8917087229bc4ec59964ef8309ccad27.tar.bz2
note that the alarm function is not available on Windows.
Diffstat (limited to 'Doc/lib/libsignal.tex')
-rw-r--r--Doc/lib/libsignal.tex8
1 files changed, 4 insertions, 4 deletions
diff --git a/Doc/lib/libsignal.tex b/Doc/lib/libsignal.tex
index 144b054..f77f0a8 100644
--- a/Doc/lib/libsignal.tex
+++ b/Doc/lib/libsignal.tex
@@ -103,8 +103,8 @@ The \module{signal} module defines the following functions:
If \var{time} is zero, no alarm id scheduled, and any scheduled
alarm is canceled. The return value is the number of seconds
remaining before a previously scheduled alarm. If the return value
- is zero, no alarm is currently scheduled. (See the \UNIX{} man page
- \manpage{alarm}{2}.)
+ is zero, no alarm is currently scheduled. Not on Windows. (See the
+ \UNIX{} man page \manpage{alarm}{2}.)
\end{funcdesc}
\begin{funcdesc}{getsignal}{signalnum}
@@ -120,8 +120,8 @@ The \module{signal} module defines the following functions:
\begin{funcdesc}{pause}{}
Cause the process to sleep until a signal is received; the
- appropriate handler will then be called. Returns nothing. (See the
- \UNIX{} man page \manpage{signal}{2}.)
+ appropriate handler will then be called. Returns nothing. Not on
+ Windows. (See the \UNIX{} man page \manpage{signal}{2}.)
\end{funcdesc}
\begin{funcdesc}{signal}{signalnum, handler}