Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorConrad Scott <conrad.scott@dsl.pipex.com>2002-07-01 02:25:04 +0400
committerConrad Scott <conrad.scott@dsl.pipex.com>2002-07-01 02:25:04 +0400
commitb1c7155c5deb504f8aea4cace6f5ccb2cf71ab57 (patch)
tree42f5ac3646ecc25cd576be754b81d25db779a85b /winsup/cygwin
parent950e3498af5af61ce35fabad6e64fb68d459ca91 (diff)
* cygserver_client.cc (client_request::handle_request): Don't
bother with the client request activity marker when compiled with debugging output.
Diffstat (limited to 'winsup/cygwin')
-rw-r--r--winsup/cygwin/ChangeLog6
-rwxr-xr-xwinsup/cygwin/cygserver_client.cc5
2 files changed, 10 insertions, 1 deletions
diff --git a/winsup/cygwin/ChangeLog b/winsup/cygwin/ChangeLog
index 953e257d1..1ab5a3e3d 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 f7f098a95..fe6c76ffe 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__ */