Staging
v0.5.1
https://github.com/python/cpython
Revision 56506a6ed2380cddc0e70d2df254ce4724b43629 authored by Mark Dickinson on 05 April 2010, 18:54:51 UTC, committed by Mark Dickinson on 05 April 2010, 18:54:51 UTC
1 parent e1d665a
Raw File
Tip revision: 56506a6ed2380cddc0e70d2df254ce4724b43629 authored by Mark Dickinson on 05 April 2010, 18:54:51 UTC
Use a better NaN test in _Py_HashDouble as well.
Tip revision: 56506a6
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