Staging
v0.8.1
https://github.com/python/cpython
Revision 174e8018c4da9a44749a711dc3300b405223c69f authored by Barry Warsaw on 22 January 2001, 04:35:57 UTC, committed by Barry Warsaw on 22 January 2001, 04:35:57 UTC
1 parent 90cecee
Raw File
Tip revision: 174e8018c4da9a44749a711dc3300b405223c69f authored by Barry Warsaw on 22 January 2001, 04:35:57 UTC
com_init(): My entry into the smallest patch possible category.
Tip revision: 174e801
intrcheck.h

#ifndef Py_INTRCHECK_H
#define Py_INTRCHECK_H
#ifdef __cplusplus
extern "C" {
#endif

extern DL_IMPORT(int) PyOS_InterruptOccurred(void);
extern DL_IMPORT(void) PyOS_InitInterrupts(void);
DL_IMPORT(void) PyOS_AfterFork(void);

#ifdef __cplusplus
}
#endif
#endif /* !Py_INTRCHECK_H */
back to top