Staging
v0.8.1
Revision 3988ed8e6f06ba8474a7f120d7f10f2a4c479f29 authored by Georg Brandl on 15 January 2011, 17:08:53 UTC, committed by Georg Brandl on 15 January 2011, 17:08:53 UTC
1 parent 23e924f
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