Staging
v0.8.1
https://github.com/python/cpython
Revision b6d1cdda8e2160ac647b39776198bf48dc7e656f authored by Jason R. Coombs on 26 June 2015, 02:42:24 UTC, committed by Jason R. Coombs on 26 June 2015, 02:42:24 UTC
1 parent 5713b3c
Raw File
Tip revision: b6d1cdda8e2160ac647b39776198bf48dc7e656f authored by Jason R. Coombs on 26 June 2015, 02:42:24 UTC
Issue #20387: Correct test to properly capture expectation.
Tip revision: b6d1cdd
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);
PyAPI_FUNC(int) _PyOS_IsMainThread(void);

#ifdef MS_WINDOWS
/* windows.h is not included by Python.h so use void* instead of HANDLE */
PyAPI_FUNC(void*) _PyOS_SigintEvent(void);
#endif

#ifdef __cplusplus
}
#endif
#endif /* !Py_INTRCHECK_H */
back to top