Staging
v0.5.1
https://github.com/python/cpython
Revision 94ba146d11869288ab3def8c7426b3b36701416a authored by Guido van Rossum on 27 April 2014, 17:44:22 UTC, committed by Guido van Rossum on 27 April 2014, 17:44:22 UTC
1 parent 83c1ddd
Raw File
Tip revision: 94ba146d11869288ab3def8c7426b3b36701416a authored by Guido van Rossum on 27 April 2014, 17:44:22 UTC
asyncio: Add __weakref__ slots to Handle and CoroWrapper. Upstream issue #166.
Tip revision: 94ba146
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