Staging
v0.5.1
https://github.com/python/cpython
Revision 061f132898d3232420db1c00a5adde13647d7e21 authored by Martin v. Löwis on 29 August 2004, 16:40:55 UTC, committed by Martin v. Löwis on 29 August 2004, 16:40:55 UTC
1 parent e064b41
Raw File
Tip revision: 061f132898d3232420db1c00a5adde13647d7e21 authored by Martin v. Löwis on 29 August 2004, 16:40:55 UTC
Patch #973204: Use -rpath instead of -R on Irix and Tru64.
Tip revision: 061f132
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