Staging
v0.5.1
https://github.com/python/cpython
Revision c8bbcc339453a777b95b6c916f896727181ab6d8 authored by Tim Peters on 12 March 2006, 07:01:31 UTC, committed by Tim Peters on 12 March 2006, 07:01:31 UTC
1 parent c7ddece
Raw File
Tip revision: c8bbcc339453a777b95b6c916f896727181ab6d8 authored by Tim Peters on 12 March 2006, 07:01:31 UTC
Copied from the trunk for buildbot use.
Tip revision: c8bbcc3
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