diff options
author | Christopher Faylor <me@cgf.cx> | 2001-10-16 03:31:50 +0000 |
---|---|---|
committer | Christopher Faylor <me@cgf.cx> | 2001-10-16 03:31:50 +0000 |
commit | 0f4db8cbe03453c0715aff20b074816d455847b4 (patch) | |
tree | f25bad6474738ae7b1eb8f60b4b7497c66e5855c /winsup/cygwin/syscalls.cc | |
parent | df63bd490a526af2d68f391f703abe8b54a502db (diff) | |
download | cygnal-0f4db8cbe03453c0715aff20b074816d455847b4.tar.gz cygnal-0f4db8cbe03453c0715aff20b074816d455847b4.tar.bz2 cygnal-0f4db8cbe03453c0715aff20b074816d455847b4.zip |
* cygerrno.h (set_errno): Define more informative version of this function for
debugging.
(__set_errno): Declare when DEBUGGING.
* cygheap.h (cygheap_fdget::cygheap_fdget): Add a flag to control when errno is
set.
* debug.cc (__set_errno): New function.
* fcntl.cc (_fcntl): Fix so that correct fd is used for second argument to
dup2.
* syscalls.cc (_cygwin_istext_for_stdio): Don't set errno here when using
cygheap_fdget.
Diffstat (limited to 'winsup/cygwin/syscalls.cc')
-rw-r--r-- | winsup/cygwin/syscalls.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/winsup/cygwin/syscalls.cc b/winsup/cygwin/syscalls.cc index dd9336c93..3224de358 100644 --- a/winsup/cygwin/syscalls.cc +++ b/winsup/cygwin/syscalls.cc @@ -1461,7 +1461,7 @@ _cygwin_istext_for_stdio (int fd) return 0; /* we do it for old apps, due to getc/putc macros */ } - cygheap_fdget cfd (fd); + cygheap_fdget cfd (fd, false, false); if (cfd < 0) { syscall_printf (" _cifs: fd not open\n"); |