2017-09-08 02:51:28 -03:00
|
|
|
#ifndef Py_INTERNAL_CEVAL_H
|
|
|
|
#define Py_INTERNAL_CEVAL_H
|
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
2019-04-17 18:02:26 -03:00
|
|
|
#ifndef Py_BUILD_CORE
|
|
|
|
# error "this header requires Py_BUILD_CORE define"
|
2018-11-09 08:03:37 -04:00
|
|
|
#endif
|
|
|
|
|
2018-10-31 20:52:28 -03:00
|
|
|
#include "pycore_atomic.h"
|
2019-05-10 18:39:09 -03:00
|
|
|
#include "pycore_pystate.h"
|
2017-09-08 02:51:28 -03:00
|
|
|
#include "pythread.h"
|
|
|
|
|
2019-06-03 13:14:24 -03:00
|
|
|
PyAPI_FUNC(void) _Py_FinishPendingCalls(_PyRuntimeState *runtime);
|
2017-09-08 02:51:28 -03:00
|
|
|
PyAPI_FUNC(void) _PyEval_Initialize(struct _ceval_runtime_state *);
|
2019-05-10 18:39:09 -03:00
|
|
|
PyAPI_FUNC(void) _PyEval_FiniThreads(
|
2019-06-03 13:14:24 -03:00
|
|
|
struct _ceval_runtime_state *ceval);
|
2019-05-10 18:39:09 -03:00
|
|
|
PyAPI_FUNC(void) _PyEval_SignalReceived(
|
2019-06-03 13:14:24 -03:00
|
|
|
struct _ceval_runtime_state *ceval);
|
2019-05-10 18:39:09 -03:00
|
|
|
PyAPI_FUNC(int) _PyEval_AddPendingCall(
|
2019-05-24 12:01:38 -03:00
|
|
|
PyThreadState *tstate,
|
2019-06-03 13:14:24 -03:00
|
|
|
struct _ceval_runtime_state *ceval,
|
2019-05-10 18:39:09 -03:00
|
|
|
int (*func)(void *),
|
|
|
|
void *arg);
|
|
|
|
PyAPI_FUNC(void) _PyEval_SignalAsyncExc(
|
2019-06-03 13:14:24 -03:00
|
|
|
struct _ceval_runtime_state *ceval);
|
2019-05-13 07:35:37 -03:00
|
|
|
PyAPI_FUNC(void) _PyEval_ReInitThreads(
|
|
|
|
_PyRuntimeState *runtime);
|
2017-09-08 02:51:28 -03:00
|
|
|
|
2019-06-03 09:30:58 -03:00
|
|
|
/* Private function */
|
|
|
|
void _PyEval_Fini(void);
|
|
|
|
|
2017-09-08 02:51:28 -03:00
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
#endif /* !Py_INTERNAL_CEVAL_H */
|