Staging
v0.5.1
https://github.com/python/cpython
Revision 8cd94b4306279959dc6deb73b7e27ab437c71b22 authored by Martin v. Löwis on 14 January 2010, 17:53:16 UTC, committed by Martin v. Löwis on 14 January 2010, 17:53:16 UTC
1 parent 906e26e
Raw File
Tip revision: 8cd94b4306279959dc6deb73b7e27ab437c71b22 authored by Martin v. Löwis on 14 January 2010, 17:53:16 UTC
Tagging for release of Python 2.5.5c1
Tip revision: 8cd94b4
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