From: Julian Seward Date: Wed, 9 Nov 2005 14:09:14 +0000 (+0000) Subject: Adjust debugLog messages. X-Git-Tag: svn/VALGRIND_3_1_0~178 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=4b7473cdb9ad7fcaa586c188d0b3caa32db64d2a;p=thirdparty%2Fvalgrind.git Adjust debugLog messages. git-svn-id: svn://svn.valgrind.org/valgrind/trunk@5054 --- diff --git a/coregrind/m_syswrap/syswrap-linux.c b/coregrind/m_syswrap/syswrap-linux.c index b036b82a2e..0d203fcb02 100644 --- a/coregrind/m_syswrap/syswrap-linux.c +++ b/coregrind/m_syswrap/syswrap-linux.c @@ -61,7 +61,7 @@ VgSchedReturnCode ML_(thread_wrapper)(Word /*ThreadId*/ tidW) ThreadId tid = (ThreadId)tidW; ThreadState* tst = VG_(get_ThreadState)(tid); - VG_(debugLog)(1, "core_os", + VG_(debugLog)(1, "syswrap-linux", "ML_(thread_wrapper)(tid=%lld): entry\n", (ULong)tidW); @@ -89,7 +89,7 @@ VgSchedReturnCode ML_(thread_wrapper)(Word /*ThreadId*/ tidW) vg_assert(tst->status == VgTs_Runnable); vg_assert(VG_(is_running_thread)(tid)); - VG_(debugLog)(1, "core_os", + VG_(debugLog)(1, "syswrap-linux", "ML_(thread_wrapper)(tid=%lld): done\n", (ULong)tidW); @@ -110,7 +110,7 @@ void ML_(run_a_thread_NORETURN) ( Word tidW ) VgSchedReturnCode src; Int c; - VG_(debugLog)(1, "syswrap-generic", + VG_(debugLog)(1, "syswrap-linux", "run_a_thread_NORETURN(tid=%lld): " "ML_(thread_wrapper) called\n", (ULong)tidW); @@ -118,7 +118,7 @@ void ML_(run_a_thread_NORETURN) ( Word tidW ) /* Run the thread all the way through. */ src = ML_(thread_wrapper)(tid); - VG_(debugLog)(1, "syswrap-ppc32-linux", + VG_(debugLog)(1, "syswrap-linux", "run_a_thread_NORETURN(tid=%lld): " "ML_(thread_wrapper) done\n", (ULong)tidW); @@ -128,7 +128,7 @@ void ML_(run_a_thread_NORETURN) ( Word tidW ) if (c == 1) { - VG_(debugLog)(1, "syswrap-ppc32-linux", + VG_(debugLog)(1, "syswrap-linux", "run_a_thread_NORETURN(tid=%lld): " "last one standing\n", (ULong)tidW); @@ -142,7 +142,7 @@ void ML_(run_a_thread_NORETURN) ( Word tidW ) ThreadState *tst; - VG_(debugLog)(1, "syswrap-ppc32-linux", + VG_(debugLog)(1, "syswrap-linux", "run_a_thread_NORETURN(tid=%lld): " "not last one standing\n", (ULong)tidW);