Staging
v0.8.1
https://github.com/python/cpython
Revision d24c8287e226ac9983caf6bb826a7b53142ee31f authored by Yury Selivanov on 11 June 2017, 14:11:47 UTC, committed by GitHub on 11 June 2017, 14:11:47 UTC
1 parent ea8b348
Raw File
Tip revision: d24c8287e226ac9983caf6bb826a7b53142ee31f authored by Yury Selivanov on 11 June 2017, 14:11:47 UTC
bpo-30508: Don't log exceptions if Task/Future "cancel()" method was called. (#2110)
Tip revision: d24c828
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