Staging
v0.5.1
https://github.com/python/cpython
Revision 30e10d8114b68613f35e98159eb428f0be0cb769 authored by Benjamin Peterson on 20 May 2011, 16:41:13 UTC, committed by Benjamin Peterson on 20 May 2011, 16:41:13 UTC
1 parent 52f63ea
Raw File
Tip revision: 30e10d8114b68613f35e98159eb428f0be0cb769 authored by Benjamin Peterson on 20 May 2011, 16:41:13 UTC
add example for not using access
Tip revision: 30e10d8
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