diff options
author | Christopher Faylor <me@cgf.cx> | 2004-01-26 18:52:02 +0000 |
---|---|---|
committer | Christopher Faylor <me@cgf.cx> | 2004-01-26 18:52:02 +0000 |
commit | 5e0f482f2cac33d5ce758e4dc0f665a4e195f4e1 (patch) | |
tree | 37a5f26d11c983b3d4947a1adcd9046c1a50bac9 /winsup/cygwin/syscalls.cc | |
parent | d7231d7224e004dc29640222f4d08da7b15aacce (diff) | |
download | cygnal-5e0f482f2cac33d5ce758e4dc0f665a4e195f4e1.tar.gz cygnal-5e0f482f2cac33d5ce758e4dc0f665a4e195f4e1.tar.bz2 cygnal-5e0f482f2cac33d5ce758e4dc0f665a4e195f4e1.zip |
* cygtls.cc (_threadinfo::init_thread): Add more local reent stdio
initialization.
* dcrt0.cc (initial_env): Can it really be true that XP doesn't allow attaching
a debugger during DLL attach? Add temporary workaround.
(dll_crt0_0): Ensure that _impure_ptr stdio is initialized before any threads.
(dll_crt0_1): Move _impure_ptr initialization to dll_crt0_0.
* exceptions.cc (try_to_debug): Reinstate old method for looping while
debugging.
* syscalls.cc (_cygwin_istext_for_stdio): Regularize debugging output. Remove
hopefully extraneous check.
(setmode_helper): Add debugging output for improbable case. Use "binary"
rather "raw" for consistency.
Diffstat (limited to 'winsup/cygwin/syscalls.cc')
-rw-r--r-- | winsup/cygwin/syscalls.cc | 25 |
1 files changed, 14 insertions, 11 deletions
diff --git a/winsup/cygwin/syscalls.cc b/winsup/cygwin/syscalls.cc index 16486d9a9..f2b0881ee 100644 --- a/winsup/cygwin/syscalls.cc +++ b/winsup/cygwin/syscalls.cc @@ -1599,33 +1599,34 @@ ctermid (char *str) extern "C" int _cygwin_istext_for_stdio (int fd) { - syscall_printf ("_cygwin_istext_for_stdio (%d)", fd); if (CYGWIN_VERSION_OLD_STDIO_CRLF_HANDLING) { - syscall_printf (" _cifs: old API"); + syscall_printf ("fd %d: old API", fd); return 0; /* we do it for old apps, due to getc/putc macros */ } cygheap_fdget cfd (fd, false, false); if (cfd < 0) { - syscall_printf (" _cifs: fd not open"); + syscall_printf ("fd %d: not open", fd); return 0; } +#if 0 if (cfd->get_device () != FH_FS) { - syscall_printf (" _cifs: fd not disk file"); + syscall_printf ("fd not disk file. Defaulting to binary."); return 0; } +#endif if (cfd->get_w_binary () || cfd->get_r_binary ()) { - syscall_printf (" _cifs: get_*_binary"); + syscall_printf ("fd %d: opened as binary", fd); return 0; } - syscall_printf ("_cygwin_istext_for_stdio says yes"); + syscall_printf ("fd %d: defaulting to text", fd); return 1; } @@ -1639,10 +1640,12 @@ static int setmode_helper (FILE *f) { if (fileno (f) != setmode_file) - return 0; - syscall_printf ("setmode: file was %s now %s", - f->_flags & __SCLE ? "text" : "raw", - setmode_mode & O_TEXT ? "text" : "raw"); + { + syscall_printf ("improbable, but %d != %d", fileno (f), setmode_file); + return 0; + } + syscall_printf ("file was %s now %s", f->_flags & __SCLE ? "text" : "binary", + setmode_mode & O_TEXT ? "text" : "binary"); if (setmode_mode & O_TEXT) f->_flags |= __SCLE; else @@ -1700,7 +1703,7 @@ setmode (int fd, int mode) setmode_file = fd; _fwalk (_REENT, setmode_helper); - syscall_printf ("setmode (%d<%s>, %p) returns %s", fd, cfd->get_name (), + syscall_printf ("(%d<%s>, %p) returning %s", fd, cfd->get_name (), mode, res & O_TEXT ? "text" : "binary"); return res; } |