summaryrefslogtreecommitdiffstats
path: root/Doc/library/thread.rst
diff options
context:
space:
mode:
Diffstat (limited to 'Doc/library/thread.rst')
-rw-r--r--Doc/library/thread.rst6
1 files changed, 4 insertions, 2 deletions
diff --git a/Doc/library/thread.rst b/Doc/library/thread.rst
index c9be598..ca70403 100644
--- a/Doc/library/thread.rst
+++ b/Doc/library/thread.rst
@@ -13,9 +13,11 @@
single: semaphores, binary
This module provides low-level primitives for working with multiple threads
-(a.k.a. :dfn:`light-weight processes` or :dfn:`tasks`) --- multiple threads of
+(also called :dfn:`light-weight processes` or :dfn:`tasks`) --- multiple threads of
control sharing their global data space. For synchronization, simple locks
-(a.k.a. :dfn:`mutexes` or :dfn:`binary semaphores`) are provided.
+(also called :dfn:`mutexes` or :dfn:`binary semaphores`) are provided.
+The :mod:`threading` module provides an easier to use and higher-level
+threading API built on top of this module.
.. index::
single: pthreads