Staging
v0.5.1
https://github.com/python/cpython
Revision 20f8728bf0cce877c1908b15ddc59e2d1011ad0f authored by Serhiy Storchaka on 24 February 2014, 11:57:00 UTC, committed by Serhiy Storchaka on 24 February 2014, 11:57:00 UTC
1 parent 09141c4
Raw File
Tip revision: 20f8728bf0cce877c1908b15ddc59e2d1011ad0f authored by Serhiy Storchaka on 24 February 2014, 11:57:00 UTC
Issue #20535: PYTHONWARNING no longer affects the run_tests.py script.
Tip revision: 20f8728
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