| extern "C" { | |
| PyAPI_FUNC(int) PyOS_InterruptOccurred(void); | |
| PyAPI_FUNC(void) PyOS_BeforeFork(void); | |
| PyAPI_FUNC(void) PyOS_AfterFork_Parent(void); | |
| PyAPI_FUNC(void) PyOS_AfterFork_Child(void); | |
| /* Deprecated, please use PyOS_AfterFork_Child() instead */ | |
| Py_DEPRECATED(3.7) PyAPI_FUNC(void) PyOS_AfterFork(void); | |
| } | |