From b9aa81491f62f6053bb648f20143ba9e68051622 Mon Sep 17 00:00:00 2001 From: Christopher Faylor Date: Sat, 3 Dec 2011 21:43:27 +0000 Subject: Throughout, remove extra space after function name from debugging output. Throughout, change syscalls to report on return values using new %R format option. * smallprint.cc (__small_vsprintf): Add parsing for %R to report on return values and possible errno from syscalls. * errno.cc (errmap): Add PRIVILEGE_NOT_HELD. * fhandler_tty.cc (fhandler_pty_master::setup): When creating a thread use shorter name to reduce debuggging output. * select.cc (start_thread_pipe): Ditto. (start_thread_serial): Ditto. (start_thread_socket): Ditto. (start_thread_mailslot): Ditto. * sigproc.cc (talktome): Ditto. --- winsup/cygwin/fhandler_tty.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'winsup/cygwin/fhandler_tty.cc') diff --git a/winsup/cygwin/fhandler_tty.cc b/winsup/cygwin/fhandler_tty.cc index 4b0538fed..6b7ad80f2 100644 --- a/winsup/cygwin/fhandler_tty.cc +++ b/winsup/cygwin/fhandler_tty.cc @@ -1033,7 +1033,7 @@ fhandler_pty_slave::ioctl (unsigned int cmd, void *arg) } out: - termios_printf ("%d = ioctl (%x)", retval, cmd); + termios_printf ("%d = ioctl(%x)", retval, cmd); return retval; } @@ -1679,7 +1679,7 @@ fhandler_pty_master::setup () errstr = "pty master control pipe"; goto err; } - master_thread = new cygthread (::pty_master_thread, this, "pty_master"); + master_thread = new cygthread (::pty_master_thread, this, "ptym"); if (!master_thread) { errstr = "pty master control thread"; -- cgit v1.2.3