diff options
-rw-r--r-- | base/statistics.hh | 1 | ||||
-rw-r--r-- | kern/tru64/dump_mbuf.cc | 2 | ||||
-rw-r--r-- | kern/tru64/dump_mbuf.hh | 2 | ||||
-rw-r--r-- | kern/tru64/printf.cc | 2 | ||||
-rw-r--r-- | kern/tru64/printf.hh | 2 | ||||
-rw-r--r-- | kern/tru64/tru64_events.cc | 6 |
6 files changed, 8 insertions, 7 deletions
diff --git a/base/statistics.hh b/base/statistics.hh index 4afdf2391..bd70cf8a0 100644 --- a/base/statistics.hh +++ b/base/statistics.hh @@ -717,6 +717,7 @@ class VectorBase : public VectorStat return *this; } + /** Friend this class with the associated scalar proxy. */ friend class ScalarProxy<T, Storage, Bin>; /** diff --git a/kern/tru64/dump_mbuf.cc b/kern/tru64/dump_mbuf.cc index b8ab7fa7c..42a2d719c 100644 --- a/kern/tru64/dump_mbuf.cc +++ b/kern/tru64/dump_mbuf.cc @@ -37,7 +37,7 @@ #include "targetarch/isa_traits.hh" #include "targetarch/vtophys.hh" -namespace Tru64 { +namespace tru64 { void DumpMbuf(AlphaArguments args) diff --git a/kern/tru64/dump_mbuf.hh b/kern/tru64/dump_mbuf.hh index 6052fa56a..f0b4c45fa 100644 --- a/kern/tru64/dump_mbuf.hh +++ b/kern/tru64/dump_mbuf.hh @@ -31,7 +31,7 @@ class AlphaArguments; -namespace Tru64 { +namespace tru64 { void DumpMbuf(AlphaArguments args); } diff --git a/kern/tru64/printf.cc b/kern/tru64/printf.cc index 65e78d0fa..a3438ec5b 100644 --- a/kern/tru64/printf.cc +++ b/kern/tru64/printf.cc @@ -37,7 +37,7 @@ using namespace std; -namespace Tru64 { +namespace tru64 { void Printf(AlphaArguments args) diff --git a/kern/tru64/printf.hh b/kern/tru64/printf.hh index 16129802c..2461665b4 100644 --- a/kern/tru64/printf.hh +++ b/kern/tru64/printf.hh @@ -31,7 +31,7 @@ class AlphaArguments; -namespace Tru64 { +namespace tru64 { void Printf(AlphaArguments args); } 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); } } |