* syscalls.cc (_read): Use more lightweight method for determining if read has
been interrupted by a signal.
This commit is contained in:
parent
b0c8c95b1e
commit
a3ec080b35
|
@ -1,3 +1,8 @@
|
||||||
|
Sun Jan 14 14:07:50 2001 Christopher Faylor <cgf@cygnus.com>
|
||||||
|
|
||||||
|
* syscalls.cc (_read): Use more lightweight method for determining if
|
||||||
|
read has been interrupted by a signal.
|
||||||
|
|
||||||
Fri Jan 12 00:35:15 2001 Christopher Faylor <cgf@cygnus.com>
|
Fri Jan 12 00:35:15 2001 Christopher Faylor <cgf@cygnus.com>
|
||||||
|
|
||||||
* debug.h: Add regparm attributes to some functions.
|
* debug.h: Add regparm attributes to some functions.
|
||||||
|
|
|
@ -259,8 +259,7 @@ beg:
|
||||||
}
|
}
|
||||||
|
|
||||||
out:
|
out:
|
||||||
if (res < 0 && WaitForSingleObject (signal_arrived, 0) == WAIT_OBJECT_0 &&
|
if (res < 0 && get_errno () == EINTR && call_signal_handler ())
|
||||||
call_signal_handler ())
|
|
||||||
goto beg;
|
goto beg;
|
||||||
syscall_printf ("%d = read (%d<%s>, %p, %d), bin %d, errno %d", res, fd, fh->get_name (),
|
syscall_printf ("%d = read (%d<%s>, %p, %d), bin %d, errno %d", res, fd, fh->get_name (),
|
||||||
ptr, len, fh->get_r_binary (), get_errno ());
|
ptr, len, fh->get_r_binary (), get_errno ());
|
||||||
|
|
Loading…
Reference in New Issue