mirror of
git://sourceware.org/git/newlib-cygwin.git
synced 2025-01-19 12:59:21 +08:00
* client.cc: Throughout, fix debug output of signed byte count value.
This commit is contained in:
parent
852ed641ee
commit
efaf85c5e6
@ -1,3 +1,7 @@
|
|||||||
|
2014-06-23 Corinna Vinschen <corinna@vinschen.de>
|
||||||
|
|
||||||
|
* client.cc: Throughout, fix debug output of signed byte count value.
|
||||||
|
|
||||||
2014-05-19 Corinna Vinschen <corinna@vinschen.de>
|
2014-05-19 Corinna Vinschen <corinna@vinschen.de>
|
||||||
|
|
||||||
* bsd_mutex.cc (msleep_sync_array::~msleep_sync_array): New destructor
|
* bsd_mutex.cc (msleep_sync_array::~msleep_sync_array): New destructor
|
||||||
|
@ -140,7 +140,7 @@ client_request::send (transport_layer_base * const conn)
|
|||||||
assert (errno);
|
assert (errno);
|
||||||
error_code (errno);
|
error_code (errno);
|
||||||
syscall_printf (("request header write failure: "
|
syscall_printf (("request header write failure: "
|
||||||
"only %lu bytes sent of %lu, "
|
"only %ld bytes sent of %lu, "
|
||||||
"error = %d(%u)"),
|
"error = %d(%u)"),
|
||||||
count, sizeof (_header),
|
count, sizeof (_header),
|
||||||
errno, GetLastError ());
|
errno, GetLastError ());
|
||||||
@ -157,7 +157,7 @@ client_request::send (transport_layer_base * const conn)
|
|||||||
assert (errno);
|
assert (errno);
|
||||||
error_code (errno);
|
error_code (errno);
|
||||||
syscall_printf (("request body write failure: "
|
syscall_printf (("request body write failure: "
|
||||||
"only %lu bytes sent of %lu, "
|
"only %ld bytes sent of %lu, "
|
||||||
"error = %d(%u)"),
|
"error = %d(%u)"),
|
||||||
count, msglen (),
|
count, msglen (),
|
||||||
errno, GetLastError ());
|
errno, GetLastError ());
|
||||||
@ -173,7 +173,7 @@ client_request::send (transport_layer_base * const conn)
|
|||||||
assert (errno);
|
assert (errno);
|
||||||
error_code (errno);
|
error_code (errno);
|
||||||
syscall_printf (("reply header read failure: "
|
syscall_printf (("reply header read failure: "
|
||||||
"only %lu bytes received of %lu, "
|
"only %ld bytes received of %lu, "
|
||||||
"error = %d(%u)"),
|
"error = %d(%u)"),
|
||||||
count, sizeof (_header),
|
count, sizeof (_header),
|
||||||
errno, GetLastError ());
|
errno, GetLastError ());
|
||||||
@ -207,7 +207,7 @@ client_request::send (transport_layer_base * const conn)
|
|||||||
assert (errno);
|
assert (errno);
|
||||||
error_code (errno);
|
error_code (errno);
|
||||||
syscall_printf (("reply body read failure: "
|
syscall_printf (("reply body read failure: "
|
||||||
"only %lu bytes received of %lu, "
|
"only %ld bytes received of %lu, "
|
||||||
"error = %d(%u)"),
|
"error = %d(%u)"),
|
||||||
count, msglen (),
|
count, msglen (),
|
||||||
errno, GetLastError ());
|
errno, GetLastError ());
|
||||||
@ -253,7 +253,7 @@ client_request::handle_request (transport_layer_base *const conn,
|
|||||||
if (count != sizeof (header))
|
if (count != sizeof (header))
|
||||||
{
|
{
|
||||||
syscall_printf (("request header read failure: "
|
syscall_printf (("request header read failure: "
|
||||||
"only %lu bytes received of %lu, "
|
"only %ld bytes received of %lu, "
|
||||||
"error = %d(%u)"),
|
"error = %d(%u)"),
|
||||||
count, sizeof (header),
|
count, sizeof (header),
|
||||||
errno, GetLastError ());
|
errno, GetLastError ());
|
||||||
@ -350,7 +350,7 @@ client_request::handle (transport_layer_base *const conn,
|
|||||||
assert (errno);
|
assert (errno);
|
||||||
error_code (errno);
|
error_code (errno);
|
||||||
syscall_printf (("request body read failure: "
|
syscall_printf (("request body read failure: "
|
||||||
"only %lu bytes received of %lu, "
|
"only %ld bytes received of %lu, "
|
||||||
"error = %d(%u)"),
|
"error = %d(%u)"),
|
||||||
count, msglen (),
|
count, msglen (),
|
||||||
errno, GetLastError ());
|
errno, GetLastError ());
|
||||||
@ -374,7 +374,7 @@ client_request::handle (transport_layer_base *const conn,
|
|||||||
assert (errno);
|
assert (errno);
|
||||||
error_code (errno);
|
error_code (errno);
|
||||||
syscall_printf (("reply header write failure: "
|
syscall_printf (("reply header write failure: "
|
||||||
"only %lu bytes sent of %lu, "
|
"only %ld bytes sent of %lu, "
|
||||||
"error = %d(%u)"),
|
"error = %d(%u)"),
|
||||||
count, sizeof (_header),
|
count, sizeof (_header),
|
||||||
errno, GetLastError ());
|
errno, GetLastError ());
|
||||||
@ -391,7 +391,7 @@ client_request::handle (transport_layer_base *const conn,
|
|||||||
assert (errno);
|
assert (errno);
|
||||||
error_code (errno);
|
error_code (errno);
|
||||||
syscall_printf (("reply body write failure: "
|
syscall_printf (("reply body write failure: "
|
||||||
"only %lu bytes sent of %lu, "
|
"only %ld bytes sent of %lu, "
|
||||||
"error = %d(%u)"),
|
"error = %d(%u)"),
|
||||||
count, msglen (),
|
count, msglen (),
|
||||||
errno, GetLastError ());
|
errno, GetLastError ());
|
||||||
|
Loading…
x
Reference in New Issue
Block a user