]> granicus.if.org Git - python/commitdiff
note that the alarm function is not available on Windows.
authorSkip Montanaro <skip@pobox.com>
Fri, 15 Feb 2002 20:36:19 +0000 (20:36 +0000)
committerSkip Montanaro <skip@pobox.com>
Fri, 15 Feb 2002 20:36:19 +0000 (20:36 +0000)
Doc/lib/libsignal.tex

index 144b054dba21df1ecb601d2de764d27e50985e20..f77f0a844a86dc62cada6d7b0c3fe9949f1dbec3 100644 (file)
@@ -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}