Staging
v0.5.1
https://github.com/python/cpython
Raw File
Tip revision: 07ffc78c9a0ae051046bf30c61735c465ebfe1c9 authored by Benjamin Peterson on 26 October 2013, 18:57:21 UTC
2.7.6rc1
Tip revision: 07ffc78
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