Staging
v0.5.0
https://github.com/python/cpython
Raw File
Tip revision: 1803024c8a13c14d1f02e640ddca054077449698 authored by Barry Warsaw on 01 March 2010, 22:16:51 UTC
More copyright year updates.
Tip revision: 1803024
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