]> granicus.if.org Git - python/commitdiff
Add dummy_thread[ing] sections and reference these from libthread[ing].
authorGuido van Rossum <guido@python.org>
Mon, 30 Dec 2002 22:34:10 +0000 (22:34 +0000)
committerGuido van Rossum <guido@python.org>
Mon, 30 Dec 2002 22:34:10 +0000 (22:34 +0000)
Doc/lib/lib.tex
Doc/lib/libthread.tex
Doc/lib/libthreading.tex

index c7a236a410d73ef9f368d0ebaf6e2c18637e938d..dc8059a5c5c329293019fbffebbea2c88aa9a652 100644 (file)
@@ -164,6 +164,8 @@ and how to embed it in other applications.
 \input{libselect}
 \input{libthread}
 \input{libthreading}
+\input{libdummythread}
+\input{libdummythreading}
 \input{libqueue}
 \input{libmmap}
 \input{libanydbm}
index d3029587475ba871c5527878e15cb958af24dce1..6dfd8758b7f84dd88882798f079fb8ad905db01a 100644 (file)
@@ -17,7 +17,9 @@ semaphores}) are provided.
 
 The module is optional.  It is supported on Windows, Linux, SGI
 IRIX, Solaris 2.x, as well as on systems that have a \POSIX{} thread
-(a.k.a. ``pthread'') implementation.
+(a.k.a. ``pthread'') implementation.  For systems lacking the \module{thread}
+module, the \refmodule{dummy_thread} module is available.  It duplicates this
+module's interface and can be used as a drop-in replacement.
 \index{pthreads}
 \indexii{threads}{\POSIX}
 
index a152a4d7e5efab3149d8ffc13aaa70c6a196120d..49618293b86960a2ca3090f92fca8bb04ba1aa2f 100644 (file)
@@ -8,6 +8,9 @@
 This module constructs higher-level threading interfaces on top of the 
 lower level \refmodule{thread} module.
 
+The \refmodule{dummy_threading} module is provided for situations where
+\module{threading} cannot be used because \module{thread} is missing.
+
 This module is safe for use with \samp{from threading import *}.  It
 defines the following functions and objects: