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
a7425263
Commit
a7425263
authored
Dec 18, 2011
by
Antoine Pitrou
Browse files
Options
Browse Files
Download
Plain Diff
Merge
parents
2bc801c4
6d5f9e73
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
7 deletions
+7
-7
Lib/threading.py
Lib/threading.py
+4
-7
Misc/NEWS
Misc/NEWS
+3
-0
No files found.
Lib/threading.py
View file @
a7425263
...
...
@@ -1068,21 +1068,18 @@ def _after_fork():
current
=
current_thread
()
with
_active_limbo_lock
:
for
thread
in
_active
.
values
():
# Any lock/condition variable may be currently locked or in an
# invalid state, so we reinitialize them.
thread
.
_reset_internal_locks
()
if
thread
is
current
:
# There is only one active thread. We reset the ident to
# its new value since it can have changed.
ident
=
_get_ident
()
thread
.
_ident
=
ident
# Any condition variables hanging off of the active thread may
# be in an invalid state, so we reinitialize them.
thread
.
_reset_internal_locks
()
new_active
[
ident
]
=
thread
else
:
# All the others are already stopped.
# We don't call _Thread__stop() because it tries to acquire
# thread._Thread__block which could also have been held while
# we forked.
thread
.
_stopped
=
True
thread
.
_stop
()
_limbo
.
clear
()
_active
.
clear
()
...
...
Misc/NEWS
View file @
a7425263
...
...
@@ -100,6 +100,9 @@ Library
- Issue #7502: Fix equality comparison for DocTestCase instances. Patch by
Cédric Krier.
- Issue #11870: threading: Properly reinitialize threads internal locks and
condition variables to avoid deadlocks in child processes.
- Issue #8035: urllib: Fix a bug where the client could remain stuck after a
redirection or an error.
...
...
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