Staging
v0.5.0
https://github.com/python/cpython
Raw File
Tip revision: a7077c865d76afe0bc9640ec0b8f2aa6c0df6f4b authored by Barry Warsaw on 16 August 2010, 22:58:18 UTC
Move NEWS file entry.
Tip revision: a7077c8
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