Staging
v0.5.1
https://github.com/python/cpython
Revision 8493c0cd66cfc181ac1517268a74f077e9998701 authored by Barry Warsaw on 29 October 2013, 14:14:05 UTC, committed by Barry Warsaw on 29 October 2013, 14:14:05 UTC
1 parent c26efbb
Raw File
Tip revision: 8493c0cd66cfc181ac1517268a74f077e9998701 authored by Barry Warsaw on 29 October 2013, 14:14:05 UTC
version bump
Tip revision: 8493c0c
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