aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristopher Faylor <me@cgf.cx>2003-06-05 19:18:33 +0000
committerChristopher Faylor <me@cgf.cx>2003-06-05 19:18:33 +0000
commit979233a51a00f80d2db623842f0ecca05da31f74 (patch)
treeb2491090f74a216b5ca0f6209b7111e902424835
parent2ec27e11806bdd9a9db0ebae64e301e5fa42934b (diff)
downloadnewlib-979233a51a00f80d2db623842f0ecca05da31f74.zip
newlib-979233a51a00f80d2db623842f0ecca05da31f74.tar.gz
newlib-979233a51a00f80d2db623842f0ecca05da31f74.tar.bz2
* cygthread.cc (cygthread::terminate_thread): Change system_printf to
debug_printf.
-rw-r--r--winsup/cygwin/ChangeLog5
-rw-r--r--winsup/cygwin/cygthread.cc2
2 files changed, 6 insertions, 1 deletions
diff --git a/winsup/cygwin/ChangeLog b/winsup/cygwin/ChangeLog
index d5007e2..fdce9f4 100644
--- a/winsup/cygwin/ChangeLog
+++ b/winsup/cygwin/ChangeLog
@@ -1,3 +1,8 @@
+2003-06-05 Christopher Faylor <cgf@redhat.com>
+
+ * cygthread.cc (cygthread::terminate_thread): Change system_printf to
+ debug_printf.
+
2003-06-04 Christopher Faylor <cgf@redhat.com>
* shared.cc (shared_info::heap_chunk_size): Be really defensive about
diff --git a/winsup/cygwin/cygthread.cc b/winsup/cygwin/cygthread.cc
index 4945c5b..2d45f29 100644
--- a/winsup/cygwin/cygthread.cc
+++ b/winsup/cygwin/cygthread.cc
@@ -255,7 +255,7 @@ cygthread::terminate_thread ()
if (!m.RegionSize)
system_printf ("m.RegionSize 0? stack_ptr %p", stack_ptr);
else if (!VirtualFree (m.AllocationBase, 0, MEM_RELEASE))
- system_printf ("VirtualFree of allocation base %p<%p> failed, %E",
+ debug_printf ("VirtualFree of allocation base %p<%p> failed, %E",
stack_ptr, m.AllocationBase);
if (is_freerange)