Staging
v0.8.1
Revision b3468f79efa45c8adaf86c0b9b797b9b3d4c12a2 authored by Michael Foord on 19 December 2010, 03:19:47 UTC, committed by Michael Foord on 19 December 2010, 03:19:47 UTC
1 parent addc6f5
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