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.
This commit is contained in:
Christopher Faylor
2011-12-03 21:43:27 +00:00
parent 8b25478267
commit b9aa81491f
42 changed files with 224 additions and 188 deletions

View File

@@ -364,7 +364,7 @@ fhandler_procsys::readdir (DIR *dir, dirent *de)
res = 0;
}
}
syscall_printf ("%d = readdir (%p, %p)", res, dir, de);
syscall_printf ("%d = readdir(%p, %p)", res, dir, de);
return res;
}
@@ -446,7 +446,7 @@ fhandler_procsys::open (int flags, mode_t mode)
break;
}
}
syscall_printf ("%d = fhandler_procsys::open (%p, %d)", res, flags, mode);
syscall_printf ("%d = fhandler_procsys::open(%p, %d)", res, flags, mode);
return res;
}