Staging
v0.5.1
https://github.com/python/cpython
Revision fde86ff67381c40b81286dabc7641cbb44edc730 authored by Giampaolo Rodola' on 07 May 2011, 17:35:36 UTC, committed by Giampaolo Rodola' on 07 May 2011, 17:35:36 UTC
2 parent s 63e4230 + 0b5c21f
Raw File
Tip revision: fde86ff67381c40b81286dabc7641cbb44edc730 authored by Giampaolo Rodola' on 07 May 2011, 17:35:36 UTC
merge
Tip revision: fde86ff
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