diff options
author | Christopher Faylor <me@cgf.cx> | 2007-11-08 14:36:49 +0000 |
---|---|---|
committer | Christopher Faylor <me@cgf.cx> | 2007-11-08 14:36:49 +0000 |
commit | a3ba550800f861f5bef0079f6bb052a5a9575cc6 (patch) | |
tree | 6c004ba70c764e46fc2da2c62ef85c54d20a41e3 /winsup/cygwin/syscalls.cc | |
parent | 75a1688a39f13c03cae53c7c5cc9deef44a34353 (diff) | |
download | cygnal-a3ba550800f861f5bef0079f6bb052a5a9575cc6.tar.gz cygnal-a3ba550800f861f5bef0079f6bb052a5a9575cc6.tar.bz2 cygnal-a3ba550800f861f5bef0079f6bb052a5a9575cc6.zip |
* dllfixdbg: Eliminate extra objcopy step.
Diffstat (limited to 'winsup/cygwin/syscalls.cc')
-rw-r--r-- | winsup/cygwin/syscalls.cc | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/winsup/cygwin/syscalls.cc b/winsup/cygwin/syscalls.cc index f3fa10d26..899745f60 100644 --- a/winsup/cygwin/syscalls.cc +++ b/winsup/cygwin/syscalls.cc @@ -743,8 +743,6 @@ readv (int fd, const struct iovec *const iov, const int iovcnt) while (1) { - sig_dispatch_pending (); - cygheap_fdget cfd (fd); if (cfd < 0) break; @@ -814,7 +812,6 @@ extern "C" ssize_t writev (const int fd, const struct iovec *const iov, const int iovcnt) { int res = -1; - sig_dispatch_pending (); const ssize_t tot = check_iovec_for_write (iov, iovcnt); cygheap_fdget cfd (fd); |