From: Julian Seward Date: Sun, 13 Feb 2005 11:05:31 +0000 (+0000) Subject: Remove more debug printing. X-Git-Tag: svn/VALGRIND_3_0_0~1077 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=d2897b0a2bf66f7f3a5ef952bf1a35c1ef407b8c;p=thirdparty%2Fvalgrind.git Remove more debug printing. git-svn-id: svn://svn.valgrind.org/valgrind/trunk@3241 --- diff --git a/coregrind/vg_scheduler.c b/coregrind/vg_scheduler.c index 2a0cf6cb3c..eb20277410 100644 --- a/coregrind/vg_scheduler.c +++ b/coregrind/vg_scheduler.c @@ -1339,24 +1339,18 @@ static void cleanup_after_thread_exited ( ThreadId tid, Bool forcekill ) { Segment *seg; -VG_(printf)("OINK 40\n"); vg_assert(is_valid_or_empty_tid(tid)); vg_assert(VG_(threads)[tid].status == VgTs_Empty); -VG_(printf)("OINK 41\n"); /* Its stack is now off-limits */ if (VG_(threads)[tid].stack_base) { seg = VG_(find_segment)( VG_(threads)[tid].stack_base ); VG_TRACK( die_mem_stack, seg->addr, seg->len ); } -VG_(printf)("OINK 42\n"); VGA_(cleanup_thread)( &VG_(threads)[tid].arch ); -VG_(printf)("OINK 43\n"); /* Not interested in the timeout anymore */ VG_(threads)[tid].awaken_at = 0xFFFFFFFF; -VG_(printf)("OINK 44\n"); /* Delete proxy LWP */ VG_(proxy_delete)(tid, forcekill); -VG_(printf)("OINK 45\n"); }