Staging
v0.5.0
https://github.com/python/cpython
Raw File
Tip revision: cc21417408524d0e829501c55f46b30ca93540b4 authored by Benjamin Peterson on 13 November 2010, 17:33:04 UTC
2.7.1rc1 bump
Tip revision: cc21417
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