Home
last modified time | relevance | path

Searched refs:Py_AddPendingCall (Results 1 – 14 of 14) sorted by relevance

/third_party/python/Include/
Dceval.h36 PyAPI_FUNC(int) Py_AddPendingCall(int (*func)(void *), void *arg);
/third_party/python/Misc/NEWS.d/
D3.8.0a2.rst164 Py_AddPendingCall() only operates relative to the main interpreter.
D3.9.0a5.rst19 than the main thread schedules a pending call (:c:func:`Py_AddPendingCall`),
68 If :c:func:`Py_AddPendingCall` is called in a subinterpreter, the function
D3.6.3rc1.rst199 Avoid using Py_AddPendingCall from signal handler, to avoid calling
D3.7.0a1.rst338 Avoid using Py_AddPendingCall from signal handler, to avoid calling
/third_party/python/Doc/data/
Dstable_abi.dat772 function,Py_AddPendingCall,3.2,
/third_party/python/PC/
Dpython3dll.c44 EXPORT_FUNC(Py_AddPendingCall)
/third_party/python/Misc/
Dstable_abi.txt1496 function Py_AddPendingCall
DHISTORY9762 Py_AddPendingCall() for the first signal to fix a deadlock on reentrant or
32742 time the Python VM begins a new instruction (Py_AddPendingCall)
/third_party/python/Doc/c-api/
Dinit.rst1429 .. c:function:: int Py_AddPendingCall(int (*func)(void *), void *arg)
1431 .. index:: single: Py_AddPendingCall()
/third_party/python/Doc/whatsnew/
D3.9.rst1338 * If :c:func:`Py_AddPendingCall` is called in a subinterpreter, the function is
D2.7.rst2121 * :c:func:`Py_AddPendingCall` is now thread-safe, letting any
/third_party/python/Python/
Dceval.c653 Py_AddPendingCall(int (*func)(void *), void *arg) in Py_AddPendingCall() function
/third_party/python/Modules/
D_testcapimodule.c2953 r = Py_AddPendingCall(&_pending_callback, callable); in pending_threadfunc()