2000-07-08 23:37:28 +00:00
|
|
|
#ifndef Py_INTRCHECK_H
|
|
|
|
#define Py_INTRCHECK_H
|
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
2002-08-12 07:21:58 +00:00
|
|
|
PyAPI_FUNC(int) PyOS_InterruptOccurred(void);
|
2023-08-29 03:20:31 +00:00
|
|
|
|
2017-05-27 15:50:54 +00:00
|
|
|
#ifdef HAVE_FORK
|
2018-05-22 17:59:42 +00:00
|
|
|
#if !defined(Py_LIMITED_API) || Py_LIMITED_API+0 >= 0x03070000
|
2017-05-27 15:50:54 +00:00
|
|
|
PyAPI_FUNC(void) PyOS_BeforeFork(void);
|
|
|
|
PyAPI_FUNC(void) PyOS_AfterFork_Parent(void);
|
|
|
|
PyAPI_FUNC(void) PyOS_AfterFork_Child(void);
|
|
|
|
#endif
|
2018-05-22 17:59:42 +00:00
|
|
|
#endif
|
2023-08-29 03:20:31 +00:00
|
|
|
|
2017-05-27 15:50:54 +00:00
|
|
|
/* Deprecated, please use PyOS_AfterFork_Child() instead */
|
2019-05-28 15:16:33 +00:00
|
|
|
Py_DEPRECATED(3.7) PyAPI_FUNC(void) PyOS_AfterFork(void);
|
2016-09-11 08:03:14 +00:00
|
|
|
|
1993-07-28 09:05:47 +00:00
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
#endif /* !Py_INTRCHECK_H */
|