* cygthread.h (cygthread::cygthread): Reorganize slightly.

* dcrt0.cc (dll_crt0_0): Move sigproc initialization later to ensure everything
we need has been set up.
(dll_crt0_1): Streamline some logic slightly.
* sigproc.cc (no_signals_available): Add back dropped test for macro parameter.
* fhandler_console.cc (fhandler_console::write): Show a little bit of what's
being written to the console in debugging output.
This commit is contained in:
Christopher Faylor
2010-09-12 15:49:30 +00:00
parent 18df393573
commit 6c6eb02b33
5 changed files with 26 additions and 17 deletions

View File

@ -1987,7 +1987,7 @@ fhandler_console::write (const void *vsrc, size_t len)
}
}
syscall_printf ("%d = fhandler_console::write (,..%d)", len, len);
syscall_printf ("%d = fhandler_console::write (\".20s\")", len, vsrc);
return len;
}