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-06-18 03:21:28 +0400
committerConrad Scott <conrad.scott@dsl.pipex.com>2002-06-18 03:21:28 +0400
commit2458e45a9e70b773d7030322030c0e5a38f78d17 (patch)
tree3edbf05562456689032dcc17c4997c167520e628 /winsup/cygserver
parentc84589dfeacc877975ab35b5a3c86815887cd237 (diff)
* cygserver.cc (main): Adjust tracing output for a cleaner display
when compiled without --enable-debugging. * threaded_queue.cc (threaded_queue::cleanup): Ditto. (queue_process_param::stop): Ditto. * include/cygwin/cygserver.h (client_request::make_request): Make non-virtual. (client_request::send): Make virtual and protected, not private. (client_request_attach_tty::send): New virtual method. * cygserver_client.cc: Use the `msglen()' accessor rather than `_header.msglen' throughout. (client_request_attach_tty::send): New method. (client_request::make_request): Remove the explicit close of `transport' as it is closed on deletion.
Diffstat (limited to 'winsup/cygserver')
-rw-r--r--winsup/cygserver/threaded_queue.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/winsup/cygserver/threaded_queue.cc b/winsup/cygserver/threaded_queue.cc
index 6811895ed..aab602634 100644
--- a/winsup/cygserver/threaded_queue.cc
+++ b/winsup/cygserver/threaded_queue.cc
@@ -112,7 +112,7 @@ threaded_queue::cleanup ()
LeaveCriticalSection (&queuelock);
if (!running)
return;
- system_printf ("Waiting for current queue threads to terminate");
+ debug_printf ("Waiting for current queue threads to terminate");
for (int n = running; n; n--)
PulseEvent (event);
while (running)
@@ -224,7 +224,7 @@ queue_process_param::stop ()
}
else
{
- system_printf ("killing request loop thread %ld", tid);
+ debug_printf ("killing request loop thread %ld", tid);
int rc;
if (!(rc = TerminateThread (hThread, 0)))
{