This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

classification
Title: pending calls: make `pendingbusy` flag static to Py_MakePendingCalls()
Type: Stage: resolved
Components: Interpreter Core Versions: Python 3.3
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: Nosy List: neologix, pitrou, python-dev
Priority: low Keywords: needs review, patch

Created on 2011-07-23 11:27 by neologix, last changed 2022-04-11 14:57 by admin. This issue is now closed.

Files
File name Uploaded Description Edit
pending_busy.diff neologix, 2011-07-23 11:27 review
Messages (3)
msg140976 - (view) Author: Charles-François Natali (neologix) * (Python committer) Date: 2011-07-23 11:27
Trivial patch.
In Python/ceval.c, when compiled with threads, make the `pendingbusy` flag used to guard against reentrant calls static to Py_MakePendingCalls().
Also, make it an int and rename it to `busy` to be consistent with the non-threaded code (int might also be a bit faster).
msg140992 - (view) Author: Antoine Pitrou (pitrou) * (Python committer) Date: 2011-07-23 15:51
Looks obviously fine :)
msg140994 - (view) Author: Roundup Robot (python-dev) (Python triager) Date: 2011-07-23 16:15
New changeset cda93720c06d by Charles-François Natali in branch 'default':
Issue 12620: Make pendingbusy flag static to Py_MakePendingCalls().
http://hg.python.org/cpython/rev/cda93720c06d
History
Date User Action Args
2022-04-11 14:57:20adminsetgithub: 56829
2011-07-23 16:19:06neologixsetstatus: open -> closed
resolution: fixed
stage: patch review -> resolved
2011-07-23 16:15:58python-devsetnosy: + python-dev
messages: + msg140994
2011-07-23 15:51:36pitrousetmessages: + msg140992
2011-07-23 11:27:35neologixcreate