Staging
v0.8.1
Revision 536d93dbd0a1d5ea98419dae9c1d3358b79d53f1 authored by Martin Panter on 14 November 2016, 03:35:59 UTC, committed by Martin Panter on 14 November 2016, 03:35:59 UTC
1 parent 09231e6
Raw File
intrcheck.h

#ifndef Py_INTRCHECK_H
#define Py_INTRCHECK_H
#ifdef __cplusplus
extern "C" {
#endif

PyAPI_FUNC(int) PyOS_InterruptOccurred(void);
PyAPI_FUNC(void) PyOS_InitInterrupts(void);
PyAPI_FUNC(void) PyOS_AfterFork(void);

#ifdef __cplusplus
}
#endif
#endif /* !Py_INTRCHECK_H */
back to top