I committed a bunch of patches that have been hanging out in my tree for a
while today from AMD, but forgot to subscribe my AMD address to the m5-dev
list, so all my commit messages got bounced. I'll forward them now.
Lisa
-----Original Message-----
From: m5-dev-boun...@m5sim.org on behalf of m5-dev-ow...@m5sim.org
Sent: Mon 1/18/2010 2:40 PM
To: Hsu, Lisa
Subject: changeset in m5: faults: i think these fault invocations should ...
You are not allowed to post to this mailing list, and your message has
been automatically rejected. If you think that your messages are
being rejected in error, contact the mailing list owner at
m5-dev-ow...@m5sim.org.
--- Begin Message ---
changeset 9eb8c185c548 in /z/repo/m5
details: http://repo.m5sim.org/m5?cmd=changeset;node=9eb8c185c548
description:
faults: i think these fault invocations should be panic and not fatal.
it definitely made implementing a trace cpu easier this way.
diffstat:
1 file changed, 2 insertions(+), 2 deletions(-)
src/sim/faults.cc | 4 ++--
diffs (21 lines):
diff -r 9e14a8c76257 -r 9eb8c185c548 src/sim/faults.cc
--- a/src/sim/faults.cc Sat Jan 02 07:06:26 2010 -0500
+++ b/src/sim/faults.cc Tue Jan 12 10:17:19 2010 -0800
@@ -40,7 +40,7 @@
#if !FULL_SYSTEM
void FaultBase::invoke(ThreadContext * tc)
{
- fatal("fault (%s) detected @ PC %p", name(), tc->readPC());
+ panic("fault (%s) detected @ PC %p", name(), tc->readPC());
}
#else
void FaultBase::invoke(ThreadContext * tc)
@@ -54,7 +54,7 @@
void UnimpFault::invoke(ThreadContext * tc)
{
- fatal("Unimpfault: %s\n", panicStr.c_str());
+ panic("Unimpfault: %s\n", panicStr.c_str());
}
#if !FULL_SYSTEM
--- End Message ---
_______________________________________________
m5-dev mailing list
m5-dev@m5sim.org
http://m5sim.org/mailman/listinfo/m5-dev