diff options
author | Victor Stinner <vstinner@python.org> | 2020-03-17 17:56:44 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-03-17 17:56:44 (GMT) |
commit | dab8423d220243efabbbcafafc12d90145539b50 (patch) | |
tree | ea5292be67fbb841bf16c76099a4b51c0871afd3 /Include/internal/pycore_ceval.h | |
parent | 514c469719f149e1722a91a9d0c63bf89dfefb2a (diff) | |
download | cpython-dab8423d220243efabbbcafafc12d90145539b50.zip cpython-dab8423d220243efabbbcafafc12d90145539b50.tar.gz cpython-dab8423d220243efabbbcafafc12d90145539b50.tar.bz2 |
bpo-39984: Add PyInterpreterState.ceval (GH-19047)
subinterpreters: Move _PyRuntimeState.ceval.tracing_possible to
PyInterpreterState.ceval.tracing_possible: each interpreter now has
its own variable.
Changes:
* Add _ceval_state structure.
* Add PyInterpreterState.ceval field.
* _PyEval_EvalFrameDefault(): add ceval2 variable (struct _ceval_state*).
* Rename _PyEval_Initialize() to _PyEval_InitRuntimeState().
* Add _PyEval_InitState().
* Don't export internal _Py_FinishPendingCalls() and
_PyEval_FiniThreads() functions anymore.
Diffstat (limited to 'Include/internal/pycore_ceval.h')
-rw-r--r-- | Include/internal/pycore_ceval.h | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/Include/internal/pycore_ceval.h b/Include/internal/pycore_ceval.h index ae6ef9a..ec00d18 100644 --- a/Include/internal/pycore_ceval.h +++ b/Include/internal/pycore_ceval.h @@ -15,9 +15,10 @@ struct _frame; #include "pycore_pystate.h" /* PyInterpreterState.eval_frame */ -PyAPI_FUNC(void) _Py_FinishPendingCalls(PyThreadState *tstate); -PyAPI_FUNC(void) _PyEval_Initialize(struct _ceval_runtime_state *); -PyAPI_FUNC(void) _PyEval_FiniThreads( +extern void _Py_FinishPendingCalls(PyThreadState *tstate); +extern void _PyEval_InitRuntimeState(struct _ceval_runtime_state *); +extern void _PyEval_InitState(struct _ceval_state *); +extern void _PyEval_FiniThreads( struct _ceval_runtime_state *ceval); PyAPI_FUNC(void) _PyEval_SignalReceived( struct _ceval_runtime_state *ceval); |