Staging
v0.8.1
Revision 06ddddf117ec8d1955265d246cce7932fac93729 authored by Georg Brandl on 03 July 2011, 07:42:43 UTC, committed by Georg Brandl on 03 July 2011, 07:42:43 UTC
1 parent d4fa7ed
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