Jack Jansen: Mac has no EINTR.

This commit is contained in:
Guido van Rossum 1999-11-08 15:32:27 +00:00
parent d4c64ba0f9
commit 09cbb01989
1 changed files with 4 additions and 0 deletions

View File

@ -751,7 +751,11 @@ floatsleep(double secs)
Py_BEGIN_ALLOW_THREADS
if (select(0, (fd_set *)0, (fd_set *)0, (fd_set *)0, &t) != 0) {
Py_BLOCK_THREADS
#ifdef EINTR
if (errno != EINTR) {
#else
if (1) {
#endif
PyErr_SetFromErrno(PyExc_IOError);
return -1;
}