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
This commit is contained in:
parent
aeaf133d27
commit
c093f29f6b
6 changed files with 8 additions and 7 deletions
|
@ -717,6 +717,7 @@ class VectorBase : public VectorStat
|
||||||
return *this;
|
return *this;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/** Friend this class with the associated scalar proxy. */
|
||||||
friend class ScalarProxy<T, Storage, Bin>;
|
friend class ScalarProxy<T, Storage, Bin>;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
|
@ -37,7 +37,7 @@
|
||||||
#include "targetarch/isa_traits.hh"
|
#include "targetarch/isa_traits.hh"
|
||||||
#include "targetarch/vtophys.hh"
|
#include "targetarch/vtophys.hh"
|
||||||
|
|
||||||
namespace Tru64 {
|
namespace tru64 {
|
||||||
|
|
||||||
void
|
void
|
||||||
DumpMbuf(AlphaArguments args)
|
DumpMbuf(AlphaArguments args)
|
||||||
|
|
|
@ -31,7 +31,7 @@
|
||||||
|
|
||||||
class AlphaArguments;
|
class AlphaArguments;
|
||||||
|
|
||||||
namespace Tru64 {
|
namespace tru64 {
|
||||||
void DumpMbuf(AlphaArguments args);
|
void DumpMbuf(AlphaArguments args);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -37,7 +37,7 @@
|
||||||
|
|
||||||
using namespace std;
|
using namespace std;
|
||||||
|
|
||||||
namespace Tru64 {
|
namespace tru64 {
|
||||||
|
|
||||||
void
|
void
|
||||||
Printf(AlphaArguments args)
|
Printf(AlphaArguments args)
|
||||||
|
|
|
@ -31,7 +31,7 @@
|
||||||
|
|
||||||
class AlphaArguments;
|
class AlphaArguments;
|
||||||
|
|
||||||
namespace Tru64 {
|
namespace tru64 {
|
||||||
void Printf(AlphaArguments args);
|
void Printf(AlphaArguments args);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -80,7 +80,7 @@ PrintfEvent::process(ExecContext *xc)
|
||||||
DebugOut() << curTick << ": " << xc->cpu->name() << ": ";
|
DebugOut() << curTick << ": " << xc->cpu->name() << ": ";
|
||||||
|
|
||||||
AlphaArguments args(xc);
|
AlphaArguments args(xc);
|
||||||
Tru64::Printf(args);
|
tru64::Printf(args);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -92,7 +92,7 @@ DebugPrintfEvent::process(ExecContext *xc)
|
||||||
DebugOut() << curTick << ": " << xc->cpu->name() << ": ";
|
DebugOut() << curTick << ": " << xc->cpu->name() << ": ";
|
||||||
|
|
||||||
AlphaArguments args(xc);
|
AlphaArguments args(xc);
|
||||||
Tru64::Printf(args);
|
tru64::Printf(args);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -101,7 +101,7 @@ DumpMbufEvent::process(ExecContext *xc)
|
||||||
{
|
{
|
||||||
if (DTRACE(DebugPrintf)) {
|
if (DTRACE(DebugPrintf)) {
|
||||||
AlphaArguments args(xc);
|
AlphaArguments args(xc);
|
||||||
Tru64::DumpMbuf(args);
|
tru64::DumpMbuf(args);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue