Staging
v0.5.1
https://github.com/python/cpython
Raw File
Tip revision: 61c2c9536fdcb29c6224850f8a92e99478d54ff3 authored by Andrew M. Kuchling on 24 January 2008, 14:08:00 UTC
Fix failing test_mailbox on Cygwin
Tip revision: 61c2c95
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