Staging
v0.5.1
https://github.com/python/cpython
Revision 7c4afcb1c4cc04d649db648c663fd50189b72034 authored by Tarek Ziadé on 19 March 2010, 21:56:34 UTC, committed by Tarek Ziadé on 19 March 2010, 21:56:34 UTC
1 parent f723956
Raw File
Tip revision: 7c4afcb1c4cc04d649db648c663fd50189b72034 authored by Tarek Ziadé on 19 March 2010, 21:56:34 UTC
Fixed #2698 - now reads the compiler option when creating the compiler
Tip revision: 7c4afcb
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