Staging
v0.5.0
https://github.com/python/cpython
Raw File
Tip revision: d858df20d0d82eeefbdbe9982cfd68207a0cd446 authored by Benjamin Peterson on 11 June 2011, 14:58:58 UTC
bump to 3.1.4
Tip revision: d858df2
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