File indexing completed on 2025-11-19 09:50:53
0001 #ifndef Py_INTRCHECK_H
0002 #define Py_INTRCHECK_H
0003 #ifdef __cplusplus
0004 extern "C" {
0005 #endif
0006
0007 PyAPI_FUNC(int) PyOS_InterruptOccurred(void);
0008
0009 #ifdef HAVE_FORK
0010 #if !defined(Py_LIMITED_API) || Py_LIMITED_API+0 >= 0x03070000
0011 PyAPI_FUNC(void) PyOS_BeforeFork(void);
0012 PyAPI_FUNC(void) PyOS_AfterFork_Parent(void);
0013 PyAPI_FUNC(void) PyOS_AfterFork_Child(void);
0014 #endif
0015 #endif
0016
0017
0018 Py_DEPRECATED(3.7) PyAPI_FUNC(void) PyOS_AfterFork(void);
0019
0020 #ifdef __cplusplus
0021 }
0022 #endif
0023 #endif