Staging
v0.5.1
https://github.com/python/cpython
Revision 2e9b6cb6ec6cfed4126eb17994522717fae435e1 authored by Amaury Forgeot d'Arc on 02 September 2008, 21:17:05 UTC, committed by Amaury Forgeot d'Arc on 02 September 2008, 21:17:05 UTC
1 parent 3e7dd78
Raw File
Tip revision: 2e9b6cb6ec6cfed4126eb17994522717fae435e1 authored by Amaury Forgeot d'Arc on 02 September 2008, 21:17:05 UTC
Use vs9to8.py to refresh the Visual Studio 2005 build files.
Tip revision: 2e9b6cb
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