summaryrefslogtreecommitdiff
path: root/src/kern/tru64/tru64_events.cc
diff options
context:
space:
mode:
authorGabe Black <gblack@eecs.umich.edu>2006-11-06 18:28:10 -0500
committerGabe Black <gblack@eecs.umich.edu>2006-11-06 18:28:10 -0500
commite39de58d21723df527ec979cde1df29980fab234 (patch)
treebe13ea6337a491acb44e90d62ba034ee35187755 /src/kern/tru64/tru64_events.cc
parent1ffff78ca90d04622da78e7d1212148762bccef6 (diff)
downloadgem5-e39de58d21723df527ec979cde1df29980fab234.tar.xz
Took the Alpha prefix off of AlphaArguments, and made sure it was being used from TheISA:: rather than AlphaISA::
--HG-- extra : convert_revision : 17c143d3cbc2f58a7a9d01366a8f649810ff7f33
Diffstat (limited to 'src/kern/tru64/tru64_events.cc')
-rw-r--r--src/kern/tru64/tru64_events.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/kern/tru64/tru64_events.cc b/src/kern/tru64/tru64_events.cc
index 69638bde1..851b3a526 100644
--- a/src/kern/tru64/tru64_events.cc
+++ b/src/kern/tru64/tru64_events.cc
@@ -81,7 +81,7 @@ PrintfEvent::process(ThreadContext *tc)
if (DTRACE(Printf)) {
DebugOut() << curTick << ": " << tc->getCpuPtr()->name() << ": ";
- AlphaArguments args(tc);
+ Arguments args(tc);
tru64::Printf(args);
}
}
@@ -93,7 +93,7 @@ DebugPrintfEvent::process(ThreadContext *tc)
if (!raw)
DebugOut() << curTick << ": " << tc->getCpuPtr()->name() << ": ";
- AlphaArguments args(tc);
+ Arguments args(tc);
tru64::Printf(args);
}
}
@@ -102,7 +102,7 @@ void
DumpMbufEvent::process(ThreadContext *tc)
{
if (DTRACE(DebugPrintf)) {
- AlphaArguments args(tc);
+ Arguments args(tc);
tru64::DumpMbuf(args);
}
}