diff options
author | scottc <scottc> | 2002-06-30 22:25:03 +0000 |
---|---|---|
committer | scottc <scottc> | 2002-06-30 22:25:03 +0000 |
commit | 5c06f306edb85d30dc1336ddc98bef8ce7789be4 (patch) | |
tree | ac98f5c2e86a476968042950059776de4b0ade6b | |
parent | be158679de8abfd9b5c32814380080a17b37d29f (diff) | |
download | gdb-5c06f306edb85d30dc1336ddc98bef8ce7789be4.tar.gz |
* cygserver_client.cc (client_request::handle_request): Don't
bother with the client request activity marker when compiled with
debugging output.
-rw-r--r-- | winsup/cygwin/ChangeLog | 6 | ||||
-rwxr-xr-x | winsup/cygwin/cygserver_client.cc | 5 |
2 files changed, 10 insertions, 1 deletions
diff --git a/winsup/cygwin/ChangeLog b/winsup/cygwin/ChangeLog index 953e257d182..1ab5a3e3d98 100644 --- a/winsup/cygwin/ChangeLog +++ b/winsup/cygwin/ChangeLog @@ -1,5 +1,11 @@ 2002-06-30 Conrad Scott <conrad.scott@dsl.pipex.com> + * cygserver_client.cc (client_request::handle_request): Don't + bother with the client request activity marker when compiled with + debugging output. + +2002-06-30 Conrad Scott <conrad.scott@dsl.pipex.com> + * cygserver_transport_pipes.cc (MAX_WAIT_NAMED_PIPE_RETRY): New constant. (WAIT_NAMED_PIPE_TIMEOUT): Ditto. diff --git a/winsup/cygwin/cygserver_client.cc b/winsup/cygwin/cygserver_client.cc index f7f098a9545..fe6c76ffe67 100755 --- a/winsup/cygwin/cygserver_client.cc +++ b/winsup/cygwin/cygserver_client.cc @@ -303,7 +303,10 @@ client_request::handle_request (transport_layer_base *const conn, req->handle (conn, cache); safe_delete (client_request, req); - printf ("."); + +#ifndef DEBUGGING + printf ("."); // A little noise when we're being quiet. +#endif } #endif /* !__INSIDE_CYGWIN__ */ |