summaryrefslogtreecommitdiff
path: root/kern/tru64/dump_mbuf.cc
diff options
context:
space:
mode:
Diffstat (limited to 'kern/tru64/dump_mbuf.cc')
-rw-r--r--kern/tru64/dump_mbuf.cc4
1 files changed, 3 insertions, 1 deletions
diff --git a/kern/tru64/dump_mbuf.cc b/kern/tru64/dump_mbuf.cc
index 9121e823d..5dd8e64c3 100644
--- a/kern/tru64/dump_mbuf.cc
+++ b/kern/tru64/dump_mbuf.cc
@@ -31,6 +31,7 @@
#include "base/cprintf.hh"
#include "base/trace.hh"
+#include "cpu/exec_context.hh"
#include "kern/tru64/mbuf.hh"
#include "sim/host.hh"
#include "targetarch/arguments.hh"
@@ -58,7 +59,8 @@ DumpMbuf(AlphaArguments args)
addr, m.m_data, m.m_len);
char *buffer = new char[m.m_len];
CopyOut(xc, buffer, m.m_data, m.m_len);
- Trace::rawDump((uint8_t *)buffer, m.m_len);
+ Trace::dataDump(curTick, xc->system->name(), (uint8_t *)buffer,
+ m.m_len);
delete [] buffer;
count -= m.m_len;