Staging
v0.5.1
Revision 1e1d7d2b4f1fc9665522a29d11d1cd55848eb253 authored by Eric Smith on 03 April 2009, 22:25:33 UTC, committed by Eric Smith on 03 April 2009, 22:25:33 UTC
1 parent 8d55a9e
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