summaryrefslogtreecommitdiff
path: root/kern/tru64/tru64_events.cc
diff options
context:
space:
mode:
authorErik Hallnor <ehallnor@umich.edu>2003-10-16 17:56:16 -0400
committerErik Hallnor <ehallnor@umich.edu>2003-10-16 17:56:16 -0400
commitc093f29f6bd2817cfc05e44d68b9a78fa0141ecf (patch)
tree9d7ec03a0bd699bb1de9fe545f67d82e97eafc5a /kern/tru64/tru64_events.cc
parentaeaf133d271a75d649451290d2b3ea12b2b744ec (diff)
downloadgem5-c093f29f6bd2817cfc05e44d68b9a78fa0141ecf.tar.xz
Clear up the last of the Doxygen warnings
base/statistics.hh: Document the friend class because doxygen can't handle the template instantiation. kern/tru64/dump_mbuf.cc: kern/tru64/dump_mbuf.hh: kern/tru64/printf.cc: kern/tru64/printf.hh: kern/tru64/tru64_events.cc: Change namespace from Tru64 to tru64 (There is a class Tru64, and it was confusing doxygen). --HG-- extra : convert_revision : 9644b1324814952cb6a2d98fd2ab4d07f0860b45
Diffstat (limited to 'kern/tru64/tru64_events.cc')
-rw-r--r--kern/tru64/tru64_events.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/kern/tru64/tru64_events.cc b/kern/tru64/tru64_events.cc
index 3717fd9a2..538246333 100644
--- a/kern/tru64/tru64_events.cc
+++ b/kern/tru64/tru64_events.cc
@@ -80,7 +80,7 @@ PrintfEvent::process(ExecContext *xc)
DebugOut() << curTick << ": " << xc->cpu->name() << ": ";
AlphaArguments args(xc);
- Tru64::Printf(args);
+ tru64::Printf(args);
}
}
@@ -92,7 +92,7 @@ DebugPrintfEvent::process(ExecContext *xc)
DebugOut() << curTick << ": " << xc->cpu->name() << ": ";
AlphaArguments args(xc);
- Tru64::Printf(args);
+ tru64::Printf(args);
}
}
@@ -101,7 +101,7 @@ DumpMbufEvent::process(ExecContext *xc)
{
if (DTRACE(DebugPrintf)) {
AlphaArguments args(xc);
- Tru64::DumpMbuf(args);
+ tru64::DumpMbuf(args);
}
}