Staging
v0.5.1
Revision d0ebc75e7368cc4b1a8e504674feabc98f8fc5fd authored by Antoine Pitrou on 15 January 2011, 17:25:58 UTC, committed by Antoine Pitrou on 15 January 2011, 17:25:58 UTC
1 parent 3988ed8
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