Clear up the last of the Doxygen warnings
authorErik Hallnor <ehallnor@umich.edu>
Thu, 16 Oct 2003 21:56:16 +0000 (17:56 -0400)
committerErik Hallnor <ehallnor@umich.edu>
Thu, 16 Oct 2003 21:56:16 +0000 (17:56 -0400)
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

base/statistics.hh
kern/tru64/dump_mbuf.cc
kern/tru64/dump_mbuf.hh
kern/tru64/printf.cc
kern/tru64/printf.hh
kern/tru64/tru64_events.cc

index 4afdf239110900edeaee0c2dbf2a18a844c6ec0b..bd70cf8a09472b5707de2175fd1b8875ad8b0796 100644 (file)
@@ -717,6 +717,7 @@ class VectorBase : public VectorStat
         return *this;
     }
 
+    /** Friend this class with the associated scalar proxy. */
     friend class ScalarProxy<T, Storage, Bin>;
 
     /**
index b8ab7fa7cc760ca1d8c8c004c0f2a553aaf0ce41..42a2d719c4204f94c8aa5a99701f458038b3dc4f 100644 (file)
@@ -37,7 +37,7 @@
 #include "targetarch/isa_traits.hh"
 #include "targetarch/vtophys.hh"
 
-namespace Tru64 {
+namespace tru64 {
 
 void
 DumpMbuf(AlphaArguments args)
index 6052fa56a8b8c701067720dc1c187c72eee8887e..f0b4c45fa4d1b1534d85d7cd6492223e02061937 100644 (file)
@@ -31,7 +31,7 @@
 
 class AlphaArguments;
 
-namespace Tru64 {
+namespace tru64 {
     void DumpMbuf(AlphaArguments args);
 }
 
index 65e78d0fa747c36bcd886d0344112b2b98be43e9..a3438ec5ba074e62c3431a1cabdec1f87fb1c31c 100644 (file)
@@ -37,7 +37,7 @@
 
 using namespace std;
 
-namespace Tru64 {
+namespace tru64 {
 
 void
 Printf(AlphaArguments args)
index 16129802cb06628c7195c360ed1dd3cb87db95ca..2461665b4df2bc0921657ed489aa74fc6a5cc512 100644 (file)
@@ -31,7 +31,7 @@
 
 class AlphaArguments;
 
-namespace Tru64 {
+namespace tru64 {
     void Printf(AlphaArguments args);
 }
 
index 3717fd9a2fbcde69dc448d642bdefbb8a233b222..5382463339b10cf82516916578985b6be596f054 100644 (file)
@@ -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);
     }
 }