Staging
v0.5.1
https://github.com/python/cpython
Raw File
Tip revision: c37a4fdf5472b9460cc38885342ef59bce05753f authored by Benjamin Peterson on 06 April 2012, 17:17:25 UTC
bump to 3.1.5 final
Tip revision: c37a4fd
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