Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cpython
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
cpython
Commits
33f4c97d
Commit
33f4c97d
authored
Dec 30, 2002
by
Guido van Rossum
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add dummy_thread[ing] sections and reference these from libthread[ing].
parent
48755302
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
8 additions
and
1 deletion
+8
-1
Doc/lib/lib.tex
Doc/lib/lib.tex
+2
-0
Doc/lib/libthread.tex
Doc/lib/libthread.tex
+3
-1
Doc/lib/libthreading.tex
Doc/lib/libthreading.tex
+3
-0
No files found.
Doc/lib/lib.tex
View file @
33f4c97d
...
...
@@ -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
}
...
...
Doc/lib/libthread.tex
View file @
33f4c97d
...
...
@@ -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
}
...
...
Doc/lib/libthreading.tex
View file @
33f4c97d
...
...
@@ -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:
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment