From: Julian Seward Date: Fri, 16 Dec 2005 01:07:11 +0000 (+0000) Subject: Add missing cases in debug printing. X-Git-Tag: svn/VALGRIND_3_2_0~504 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=cf2cdb02694552a01691634a842b215f3250d7be;p=thirdparty%2Fvalgrind.git Add missing cases in debug printing. git-svn-id: svn://svn.valgrind.org/valgrind/trunk@5357 --- diff --git a/coregrind/m_scheduler/scheduler.c b/coregrind/m_scheduler/scheduler.c index 6cd11ae2d4..113341cfcb 100644 --- a/coregrind/m_scheduler/scheduler.c +++ b/coregrind/m_scheduler/scheduler.c @@ -157,6 +157,10 @@ HChar* name_of_sched_event ( UInt event ) case VEX_TRC_JMP_CLIENTREQ: return "CLIENTREQ"; case VEX_TRC_JMP_YIELD: return "YIELD"; case VEX_TRC_JMP_NODECODE: return "NODECODE"; + case VEX_TRC_JMP_MAPFAIL: return "MAPFAIL"; + case VEX_TRC_JMP_EMWARN: return "EMWARN"; + case VEX_TRC_JMP_TINVAL: return "TINVAL"; + case VG_TRC_INVARIANT_FAILED: return "INVFAILED"; case VG_TRC_INNER_COUNTERZERO: return "COUNTERZERO"; case VG_TRC_INNER_FASTMISS: return "FASTMISS"; case VG_TRC_FAULT_SIGNAL: return "FAULTSIGNAL";