Staging
v0.8.1
https://github.com/python/cpython
Revision 06fa53232d0fc8f9a47bfaf8067df0739e80288e authored by Martin v. Löwis on 02 March 2008, 20:40:14 UTC, committed by Martin v. Löwis on 02 March 2008, 20:40:14 UTC
1 parent cb6727e
Raw File
Tip revision: 06fa53232d0fc8f9a47bfaf8067df0739e80288e authored by Martin v. Löwis on 02 March 2008, 20:40:14 UTC
Tag 2.3.7c1.
Tip revision: 06fa532
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