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
1662162c
Commit
1662162c
authored
May 09, 2003
by
Jack Jansen
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Documented the new autoGIL module.
parent
ba5db205
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
28 additions
and
0 deletions
+28
-0
Doc/Makefile.deps
Doc/Makefile.deps
+1
-0
Doc/mac/libautogil.tex
Doc/mac/libautogil.tex
+26
-0
Doc/mac/mac.tex
Doc/mac/mac.tex
+1
-0
No files found.
Doc/Makefile.deps
View file @
1662162c
...
@@ -362,6 +362,7 @@ MACFILES= $(HOWTOSTYLES) $(INDEXSTYLES) $(COMMONTEX) \
...
@@ -362,6 +362,7 @@ MACFILES= $(HOWTOSTYLES) $(INDEXSTYLES) $(COMMONTEX) \
mac/libmacui.tex
\
mac/libmacui.tex
\
mac/libmacic.tex
\
mac/libmacic.tex
\
mac/libframework.tex
\
mac/libframework.tex
\
mac/libautogil.tex
\
mac/libminiae.tex
\
mac/libminiae.tex
\
mac/libscrap.tex
mac/libscrap.tex
...
...
Doc/mac/libautogil.tex
0 → 100644
View file @
1662162c
\section
{
\module
{
autoGIL
}
---
Global Interpreter Lock handling in event loops
}
\declaremodule
{
extension
}{
autoGIL
}
\platform
{
Mac
}
\modulesynopsis
{
Global Interpreter Lock handling in event loops.
}
\moduleauthor
{
Just van Rossum
}{
just@letterror.com
}
The
\module
{
autoGIL
}
module provides a function
\function
{
installAutoGIL
}
that
automatically locks and unlocks Python's Global Interpreter Lock
when running an event loop.
\begin{excdesc}
{
AutoGILError
}
Raised if the observer callback cannot be installed, for example because
the current thread does not have a run loop.
\end{excdesc}
\begin{funcdesc}
{
installAutoGIL
}{}
Install an observer callback in the event loop (CFRunLoop) for the
current thread, that will lock and unlock the Global Interpreter Lock
(GIL) at appropriate times, allowing other Python threads to run while
the event loop is idle.
Availability: OSX 10.1 or later.
\end{funcdesc}
Doc/mac/mac.tex
View file @
1662162c
...
@@ -57,6 +57,7 @@ documented here:
...
@@ -57,6 +57,7 @@ documented here:
\input
{
libmacostools
}
\input
{
libmacostools
}
\input
{
libmacui
}
\input
{
libmacui
}
\input
{
libframework
}
\input
{
libframework
}
\input
{
libautogil
}
\input
{
scripting
}
\input
{
scripting
}
...
...
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