Make commenting on close namespace brackets consistent.
authorSteve Reinhardt <steve.reinhardt@amd.com>
Mon, 3 Jan 2011 22:35:43 +0000 (14:35 -0800)
committerSteve Reinhardt <steve.reinhardt@amd.com>
Mon, 3 Jan 2011 22:35:43 +0000 (14:35 -0800)
Ran all the source files through 'perl -pi' with this script:

s|\s*(};?\s*)?/\*\s*(end\s*)?namespace\s*(\S+)\s*\*/(\s*})?|} // namespace $3|;
s|\s*};?\s*//\s*(end\s*)?namespace\s*(\S+)\s*|} // namespace $2\n|;
s|\s*};?\s*//\s*(\S+)\s*namespace\s*|} // namespace $1\n|;

Also did a little manual editing on some of the arch/*/isa_traits.hh files
and src/SConscript.

112 files changed:
src/SConscript
src/arch/alpha/mt.hh
src/arch/alpha/pagetable.cc
src/arch/alpha/tlb.cc
src/arch/arm/faults.hh
src/arch/arm/isa_traits.hh
src/arch/arm/kernel_stats.hh
src/arch/arm/nativetrace.cc
src/arch/arm/nativetrace.hh
src/arch/arm/tlb.hh
src/arch/mips/dsp.hh
src/arch/mips/faults.hh
src/arch/mips/isa_traits.hh
src/arch/mips/kernel_stats.hh
src/arch/mips/linux/threadinfo.hh
src/arch/power/faults.hh
src/arch/power/insts/branch.hh
src/arch/power/insts/condition.hh
src/arch/power/insts/floating.hh
src/arch/power/insts/integer.hh
src/arch/power/insts/mem.hh
src/arch/power/insts/misc.hh
src/arch/power/insts/static_inst.hh
src/arch/power/isa.hh
src/arch/power/isa_traits.hh
src/arch/power/locked_mem.hh
src/arch/power/microcode_rom.hh
src/arch/power/miscregs.hh
src/arch/power/mmaped_ipr.hh
src/arch/power/pagetable.cc
src/arch/power/pagetable.hh
src/arch/power/predecoder.hh
src/arch/power/registers.hh
src/arch/power/remote_gdb.hh
src/arch/power/stacktrace.hh
src/arch/power/tlb.hh
src/arch/power/types.hh
src/arch/power/utility.cc
src/arch/power/utility.hh
src/arch/power/vtophys.hh
src/arch/sparc/faults.hh
src/arch/sparc/kernel_stats.hh
src/arch/sparc/nativetrace.cc
src/arch/sparc/nativetrace.hh
src/arch/sparc/tlb.cc
src/arch/sparc/vtophys.cc
src/arch/x86/cpuid.cc
src/arch/x86/nativetrace.cc
src/arch/x86/nativetrace.hh
src/arch/x86/registers.hh
src/arch/x86/tlb.cc
src/arch/x86/utility.cc
src/base/cprintf.cc
src/base/cprintf.hh
src/base/hashmap.hh
src/base/inet.cc
src/base/inet.hh
src/base/mysql.cc
src/base/mysql.hh
src/base/statistics.cc
src/base/statistics.hh
src/base/stats/info.hh
src/base/stats/mysql.cc
src/base/stats/mysql.hh
src/base/stats/mysql_run.hh
src/base/stats/output.cc
src/base/stats/output.hh
src/base/stats/text.cc
src/base/stats/text.hh
src/base/stats/types.hh
src/base/stats/visit.cc
src/base/stats/visit.hh
src/base/stl_helpers.hh
src/base/trace.cc
src/base/trace.hh
src/base/varargs.hh
src/cpu/exetrace.cc
src/cpu/exetrace.hh
src/cpu/inorder/inorder_trace.cc
src/cpu/inorder/inorder_trace.hh
src/cpu/inteltrace.cc
src/cpu/inteltrace.hh
src/cpu/legiontrace.cc
src/cpu/legiontrace.hh
src/cpu/nativetrace.cc
src/cpu/nativetrace.hh
src/dev/copy_engine_defs.hh
src/dev/i8254xGBe_defs.hh
src/dev/sinic.cc
src/dev/sinic.hh
src/dev/sinicreg.hh
src/dev/x86/cmos.hh
src/dev/x86/i8042.hh
src/dev/x86/i82094aa.hh
src/dev/x86/i8237.hh
src/dev/x86/i8254.hh
src/dev/x86/i8259.hh
src/dev/x86/intdev.hh
src/dev/x86/speaker.hh
src/kern/kernel_stats.cc
src/kern/kernel_stats.hh
src/mem/ruby/common/Address.hh
src/python/m5/SimObject.py
src/python/m5/params.py
src/python/swig/stats.i
src/sim/core.cc
src/sim/core.hh
src/sim/insttracer.hh
src/sim/pseudo_inst.cc
src/sim/pseudo_inst.hh
src/sim/stat_control.cc
src/sim/stat_control.hh

index 2d4ad7b0c250eec677067ab015e554dc5f8c46e9..7d342e04c78fd54f2a0a6bc7d6cea9e4cb8cc935 100644 (file)
@@ -835,7 +835,7 @@ extern const int numFlagStrings;
 // base flags to set.  Inidividual flag arrays are terminated by -1.
 extern const Flags *compoundFlags[];
 
-/* namespace Trace */ }
+} // namespace Trace
 
 #endif // __BASE_TRACE_FLAGS_HH__
 ''')
@@ -902,7 +902,7 @@ EmbeddedPython embedded_${sym}(
     ${{len(data)}},
     ${{len(marshalled)}});
 
-/* namespace */ }
+} // anonymous namespace
 ''')
     code.write(str(target[0]))
 
index 88ab01e3214b76f415de102aca90d7e076a6cb2b..57cf90f79c98d78c042fd0679a53f31da5f5ee5a 100644 (file)
@@ -66,6 +66,6 @@ getTargetThread(TC *tc)
     return 0;
 }
 
-}//namespace AlphaISA
+} // namespace AlphaISA
 
 #endif
index 6640e72e28b0c148d6860d5914f6b6433a667d49..4dff04777e4b99bc033a81c1cac5e8fd660b3a68 100644 (file)
@@ -61,4 +61,4 @@ TlbEntry::unserialize(Checkpoint *cp, const std::string &section)
     UNSERIALIZE_SCALAR(valid);
 }
 
-} //namespace AlphaISA
+} // namespace AlphaISA
index 614061dddb91f49f8d1954d6b04703951d1974f8..58d54e79022479ade84c8cefa789c3b15f9d8b6d 100644 (file)
@@ -595,7 +595,7 @@ TLB::translateTiming(RequestPtr req, ThreadContext *tc,
     translation->finish(translateAtomic(req, tc, mode), req, tc, mode);
 }
 
-/* end namespace AlphaISA */ }
+} // namespace AlphaISA
 
 AlphaISA::TLB *
 AlphaTLBParams::create()
index a68e7b2ef94c985235b05216fde6ac07183d6d83..6c1b223abaf8c67d92be53062fba4b2395449cce 100644 (file)
@@ -246,6 +246,6 @@ static inline Fault genMachineCheckFault()
     return new Reset();
 }
 
-} // ArmISA namespace
+} // namespace ArmISA
 
 #endif // __ARM_FAULTS_HH__
index a24852ba91f0c8e308cfaf3a9a5faec7e7e6548a..b2989e4b3dd4935b42ee777e626355e7b151cf16 100644 (file)
@@ -48,7 +48,7 @@
 #include "arch/arm/types.hh"
 #include "base/types.hh"
 
-namespace LittleEndianGuest {};
+namespace LittleEndianGuest {}
 
 #define TARGET_ARM
 
@@ -123,7 +123,7 @@ namespace ArmISA
         INT_FIQ,
         NumInterruptTypes
     };
-};
+} // namespace ArmISA
 
 using namespace ArmISA;
 
index 18bdc500dcea8c37219704b891983029da3e5a12..be5c25bd5722db89b9a67ffdfaf1e7b760c9a318 100644 (file)
@@ -51,7 +51,7 @@ class Statistics : public ::Kernel::Statistics
     {}
 };
 
-} /* end namespace ArmISA::Kernel */
-} /* end namespace ArmISA */
+} // namespace ArmISA::Kernel
+} // namespace ArmISA
 
 #endif // __ARCH_ARM_KERNEL_STATS_HH__
index 75546f8de5459c59053c19e8e7ab09734352c37e..531a6ee2e92dd366893d4489ba38818c0fd75992 100644 (file)
@@ -192,7 +192,7 @@ Trace::ArmNativeTrace::check(NativeTraceRecord *record)
     }
 }
 
-} /* namespace Trace */
+} // namespace Trace
 
 ////////////////////////////////////////////////////////////////////////
 //
index 7467e337826239040cfa0d577e9785e165ae117f..221d40e2fc63f6eb9842fbd9085cfeed7f303b27 100644 (file)
@@ -107,6 +107,6 @@ class ArmNativeTrace : public NativeTrace
     void check(NativeTraceRecord *record);
 };
 
-} /* namespace Trace */
+} // namespace Trace
 
 #endif // __ARCH_ARM_NATIVETRACE_HH__
index 5b24eebe2ca72ef1534e8ef9c309c835b5066f5d..1374123b21f22edfcc008a990a3da18880be418d 100644 (file)
@@ -239,6 +239,6 @@ public:
     inline void invalidateMiscReg() { miscRegValid = false; }
 };
 
-/* namespace ArmISA */ }
+} // namespace ArmISA
 
 #endif // __ARCH_ARM_TLB_HH__
index a3d6c1a8fb143960185445905184c1cf194014fb..1cca5138497808176d8a1e4ad5e085b23c1a8c4a 100755 (executable)
@@ -199,6 +199,6 @@ void simdUnpack(int32_t reg, uint64_t *values_ptr, int32_t fmt, int32_t sign);
 void writeDSPControl(uint32_t *dspctl, uint32_t value, uint32_t mask);
 uint32_t readDSPControl(uint32_t *dspctl, uint32_t mask);
 
-} /* namespace MipsISA */
+} // namespace MipsISA
 
 #endif // __ARCH_MIPS_DSP_HH__
index 083aa5939804cfabd0d73836b2b1f2a8457c16a3..616886745b9dc9d37e59524a324e61d89b00a593 100644 (file)
@@ -596,6 +596,6 @@ class DspStateDisabledFault : public MipsFault
             StaticInstPtr inst = StaticInst::nullStaticInstPtr);
 };
 
-} // MipsISA namespace
+} // namespace MipsISA
 
 #endif // __MIPS_FAULTS_HH__
index efb1fb5944583c93ac7ef98bad4acde6aa2c8747..648713926f37d66397a3e35b3d97b5cdbe62a5df 100644 (file)
@@ -39,7 +39,7 @@
 #include "base/types.hh"
 #include "config/full_system.hh"
 
-namespace LittleEndianGuest {};
+namespace LittleEndianGuest {}
 
 class StaticInstPtr;
 
@@ -164,6 +164,6 @@ const uint32_t ITOUCH_ANNOTE = 0xffffffff;
 // Memory accesses cannot be unaligned
 const bool HasUnalignedMemAcc = false;
 
-};
+} // namespace MipsISA
 
 #endif // __ARCH_MIPS_ISA_TRAITS_HH__
index f14c6f8515ee9b8766680cb08510c44bed285c4e..5cf6087c814368bb6c124fbc9bef19528daa64d3 100644 (file)
@@ -48,7 +48,7 @@ class Statistics : public ::Kernel::Statistics
 };
 
 
-} /* end namespace MipsISA::Kernel */
-} /* end namespace MipsISA */
+} // namespace MipsISA::Kernel
+} // namespace MipsISA
 
 #endif // __ARCH_MIPS_KERNEL_STATS_HH__
index b0d0cd811eded41e1e11a77caed141015175300c..20a4033ddc255dd064d7a56bcecfa451d9ad6fec 100644 (file)
@@ -148,6 +148,6 @@ class ThreadInfo
     }
 };
 
-/* namespace Linux */ }
+} // namespace Linux
 
 #endif // __ARCH_MIPS_LINUX_LINUX_THREADINFO_HH__
index 0f49cc85d3bf2023ba2212e996037770212875bf..f1977150c18e4c50b042fa423481f8b8f2a4f6d9 100644 (file)
@@ -98,6 +98,6 @@ genMachineCheckFault()
     return new MachineCheckFault();
 }
 
-} // PowerISA namespace
+} // namespace PowerISA
 
 #endif // __ARCH_POWER_FAULTS_HH__
index 7b9e78dee3639ec1b3cfb42a34ca6bb863d9ded9..1947e4ec3758834bb009888a684c957b1624b545 100644 (file)
@@ -236,6 +236,6 @@ class BranchRegCond : public BranchCond
     std::string generateDisassembly(Addr pc, const SymbolTable *symtab) const;
 };
 
-} // PowerISA namespace
+} // namespace PowerISA
 
 #endif //__ARCH_POWER_INSTS_BRANCH_HH__
index a23667d9ecd42b993dc589ee562fb2318e5fa63c..e5112b2c1c585c9032bbce4af296aed1c093da22 100644 (file)
@@ -81,6 +81,6 @@ class CondMoveOp : public PowerStaticInst
     std::string generateDisassembly(Addr pc, const SymbolTable *symtab) const;
 };
 
-} // PowerISA namespace
+} // namespace PowerISA
 
 #endif //__ARCH_POWER_INSTS_CONDITION_HH__
index 2b266840941a41c663eebb7965c571314a047b9f..deeac82cf69babac0a658b2aa18d8804bad19f30 100644 (file)
@@ -148,6 +148,6 @@ class FloatOp : public PowerStaticInst
     std::string generateDisassembly(Addr pc, const SymbolTable *symtab) const;
 };
 
-} // PowerISA namespace
+} // namespace PowerISA
 
 #endif //__ARCH_POWER_INSTS_FLOATING_HH__
index b4b96d5dc5d4fbb0d8c56fc90267ada9c5b39c2c..a7270cd38f490a40126578a4b72508124224ccab 100644 (file)
@@ -171,6 +171,6 @@ class IntRotateOp : public IntShiftOp
     std::string generateDisassembly(Addr pc, const SymbolTable *symtab) const;
 };
 
-} // PowerISA namespace
+} // namespace PowerISA
 
 #endif //__ARCH_POWER_INSTS_INTEGER_HH__
index 329dafe5705b0bb24fd4d97b75cbf4339b4f03ee..a5874269050a1814396a7fc867361049559594e2 100644 (file)
@@ -86,6 +86,6 @@ class MemDispOp : public MemOp
     std::string generateDisassembly(Addr pc, const SymbolTable *symtab) const;
 };
 
-} // PowerISA namespace
+} // namespace PowerISA
 
 #endif //__ARCH_POWER_INSTS_MEM_HH__
index dd4941b934b5cf7d16618d53f0e59b9faf614d40..d6a73d25469f1158f0139dbb989daacca461e29e 100644 (file)
@@ -52,6 +52,6 @@ class MiscOp : public PowerStaticInst
     std::string generateDisassembly(Addr pc, const SymbolTable *symtab) const;
 };
 
-} // PowerISA namespace
+} // namespace PowerISA
 
 #endif //__ARCH_POWER_INSTS_MISC_HH__
index 91eca6fb0fedde8ace5fa24cfa38f40854db0c69..48e5fa94b09aac94be4e8f759233deda1e7e0591 100644 (file)
@@ -71,6 +71,6 @@ class PowerStaticInst : public StaticInst
     }
 };
 
-} // PowerISA namespace
+} // namespace PowerISA
 
 #endif //__ARCH_POWER_INSTS_STATICINST_HH__
index ba1b5018d487c167b378b8f54a77afe4ccf051d2..78ae18ea9e59c29b848028595bd1a2d09f178d50 100644 (file)
@@ -110,6 +110,6 @@ class ISA
     }
 };
 
-} // PowerISA namespace
+} // namespace PowerISA
 
 #endif // __ARCH_POWER_ISA_HH__
index ab6a567600b4e5b3f798b25eeb87ccb276a95f63..f0f50b9e947cc37b08a501371c6abdb52b0219f5 100644 (file)
@@ -38,7 +38,7 @@
 #include "arch/power/types.hh"
 #include "base/types.hh"
 
-namespace BigEndianGuest {};
+namespace BigEndianGuest {}
 
 class StaticInstPtr;
 
@@ -73,6 +73,6 @@ const ExtMachInst NoopMachInst = 0x60000000;
 // Memory accesses can be unaligned
 const bool HasUnalignedMemAcc = true;
 
-} // PowerISA namespace
+} // namespace PowerISA
 
 #endif // __ARCH_POWER_ISA_TRAITS_HH__
index 56ab1d4a0e70bd9297e46875689f1821096194f3..6141b9ef27eeda4d8dbedc6788b38e113b5d6522 100644 (file)
@@ -59,6 +59,6 @@ handleLockedWrite(XC *xc, Request *req)
     return true;
 }
 
-} // PowerISA namespace
+} // namespace PowerISA
 
 #endif // __ARCH_POWER_LOCKED_MEM_HH__
index e35db5112e377b863130b7028caa5f249f78b44c..0cb1006534bf3110dce8853b2dc3cdde5c4ecb52 100644 (file)
@@ -40,6 +40,6 @@ namespace PowerISA
 
 using ::MicrocodeRom;
 
-} // PowerISA namespace
+} // namespace PowerISA
 
 #endif // __ARCH_POWER_MICROCODE_ROM_HH__
index 34732dad15cb72f09b8482d0d2dc7d65182ac67b..eba97d439d3a5c353a163060cb45399adc7881ad 100644 (file)
@@ -95,6 +95,6 @@ BitUnion32(Fpscr)
     Bitfield<2,1> rn;
 EndBitUnion(Fpscr)
 
-}; // PowerISA namespace
+} // namespace PowerISA
 
 #endif // __ARCH_POWER_MISCREGS_HH__
index bd1ea10b356141a90660526ac486ce95e0887a5e..fc88634dccf07a65b07b3162f48d441ad9051a5c 100644 (file)
@@ -61,6 +61,6 @@ handleIprWrite(ThreadContext *xc, Packet *pkt)
     panic("No implementation for handleIprWrite in POWER\n");
 }
 
-} // PowerISA namespace
+} // namespace PowerISA
 
 #endif // __ARCH_POWER_MMAPED_IPR_HH__
index 862404578b79d70d4294c316b56e88f36126f4c5..091fb8bc875f57e7368742236e23f1facb7dfd72 100644 (file)
@@ -79,4 +79,4 @@ PTE::unserialize(Checkpoint *cp, const std::string &section)
     UNSERIALIZE_SCALAR(OffsetMask);
 }
 
-} // PowerISA namespace
+} // namespace PowerISA
index bd2b9d3978aa761aa2aeb78e7147cdc509674ebf..a5f18eba959ebf49f27217883fd2eb2e1e750c5f 100644 (file)
@@ -152,7 +152,7 @@ struct PTE
     void unserialize(Checkpoint *cp, const std::string &section);
 };
 
-} // PowerISA namespace
+} // namespace PowerISA
 
 #endif // __ARCH_POWER_PAGETABLE_H__
 
index 431c5d1b7258d3a2d8cc42ccea2d51f6bdb5986b..8b10890957a04a1ce5008ab922acd9c02ccb4909 100644 (file)
@@ -120,6 +120,6 @@ class Predecoder
     }
 };
 
-} // PowerISA namespace
+} // namespace PowerISA
 
 #endif // __ARCH_POWER_PREDECODER_HH__
index 59816a5993ac5bfe3f364e9ae181da0f3edf5718..8b2aefc47114b372c63c3c0ab527d79c2b41f6cc 100644 (file)
@@ -101,6 +101,6 @@ enum MiscIntRegNums {
     INTREG_RSV_ADDR
 };
 
-} // PowerISA namespace
+} // namespace PowerISA
 
 #endif // __ARCH_POWER_REGISTERS_HH__
index 34bb4bd1fcdf963dd25f02ba9d45afa8769ab5a4..b37c3171332c65b971bddef4c1e420b951a44343 100644 (file)
@@ -79,6 +79,6 @@ class RemoteGDB : public BaseRemoteGDB
     }
 };
 
-} // PowerISA namespace
+} // namespace PowerISA
 
 #endif /* __ARCH_POWER_REMOTE_GDB_H__ */
index 49d687a6ea6c079d6d06067d15f66632549e2113..e87203df648ca0d87d6bb973a3d2625b344d4825 100644 (file)
@@ -143,6 +143,6 @@ StackTrace::trace(ThreadContext *tc, StaticInstPtr inst)
     return true;
 }
 
-} // PowerISA namespace
+} // namespace PowerISA
 
 #endif // __ARCH_POWER_STACKTRACE_HH__
index 8431b9ad199a99a3746004062bad569b3101898f..7e5638cf1bc1544041cfb8e3235aa977ad9b0c7f 100644 (file)
@@ -167,6 +167,6 @@ class TLB : public BaseTLB
     void regStats();
 };
 
-} // PowerISA namespace
+} // namespace PowerISA
 
 #endif // __ARCH_POWER_TLB_HH__
index d049cdec1bbe2cc79beff26e3cf1b9e539253a75..61f8acfca2c8f0aa5034b8d9760af3f3f14ed5a6 100644 (file)
@@ -101,6 +101,6 @@ struct hash<PowerISA::ExtMachInst> : public hash<uint32_t> {
     };
 };
 
-} // __hash_namespace namespace
+} // namespace __hash_namespace
 
 #endif // __ARCH_POWER_TYPES_HH__
index 399ec1f56dc222c4fe46e87b46a03552f2224ce9..b02ccda08ded46e91afab0425d786b7bc5abbdfe 100644 (file)
@@ -62,4 +62,4 @@ skipFunction(ThreadContext *tc)
 }
 
 
-} // PowerISA namespace
+} // namespace PowerISA
index a47fcdc46710e886727a900637c650d4ae2fbcb0..cbb9bb646d1bcacd221be5d1ca07aecd83d9161d 100644 (file)
@@ -78,6 +78,6 @@ advancePC(PCState &pc, const StaticInstPtr inst)
     pc.advance();
 }
 
-} // PowerISA namespace
+} // namespace PowerISA
 
 #endif // __ARCH_POWER_UTILITY_HH__
index 3cfebcfc75148b613a25a3c0281a8839b9be3283..8b88c92151c670a7b5936f14e88abb20f680cc35 100644 (file)
@@ -51,7 +51,7 @@ PteAddr(Addr a)
     return (a & PteMask) << PteShift;
 }
 
-} // PowerISA namespace
+} // namespace PowerISA
 
 #endif // __ARCH_POWER_VTOPHYS_HH__
 
index e10e07494118ce2cb02f424b73bdc6afbe32f95b..bee29ee5e1b0d7f7fd3db9f55e33db86cb5e8b52 100644 (file)
@@ -302,6 +302,6 @@ genMachineCheckFault()
 }
 
 
-} // SparcISA namespace
+} // namespace SparcISA
 
 #endif // __SPARC_FAULTS_HH__
index c007c54c20af2cfaa236bf55d19762e4fd274911..3d4c677a0a7eacee4c9d2dbf0b2e9cb0b16241ca 100644 (file)
@@ -51,7 +51,7 @@ class Statistics : public ::Kernel::Statistics
     {}
 };
 
-} /* end namespace AlphaISA::Kernel */
-} /* end namespace AlphaISA */
+} // namespace AlphaISA::Kernel
+} // namespace AlphaISA
 
 #endif // __ARCH_SPARC_KERNEL_STATS_HH__
index 5e3d5c8b3f652bedea933b82883b9d8b32423930..7d8b96dc1eef7fb0bf4f7630edf22f6dee9f3b5d 100644 (file)
@@ -87,7 +87,7 @@ Trace::SparcNativeTrace::check(NativeTraceRecord *record)
     checkReg("ccr", regVal, realRegVal);
 }
 
-} /* namespace Trace */
+} // namespace Trace
 
 ////////////////////////////////////////////////////////////////////////
 //
index d618107bb797f816e9c87cf0faad51c0e7fd4525..0bd40712b7f095b7807bd734768d687c3e9cd42c 100644 (file)
@@ -47,6 +47,6 @@ class SparcNativeTrace : public NativeTrace
     void check(NativeTraceRecord *record);
 };
 
-} /* namespace Trace */
+} // namespace Trace
 
 #endif // __CPU_NATIVETRACE_HH__
index 51287849968e133256a92db9431b3ef25a99557b..7c7819561ad0dae2eaa0c2c64794e5f5aff9342b 100644 (file)
@@ -1408,7 +1408,7 @@ TLB::unserialize(Checkpoint *cp, const std::string &section)
     UNSERIALIZE_SCALAR(sfar);
 }
 
-/* end namespace SparcISA */ }
+} // namespace SparcISA
 
 SparcISA::TLB *
 SparcTLBParams::create()
index 48e778c6ffa87414d044966988639eb63bcec054..36b2557e707e776e6d0a311f66787244aa9d689f 100644 (file)
@@ -129,4 +129,4 @@ vtophys(ThreadContext *tc, Addr addr)
     return pte.translate(addr);
 }
 
-} /* namespace SparcISA */
+} // namespace SparcISA
index 6b686f38a6a26ca9b4613eb6634c61a14e21a00b..fa5e30698bf5735a3eb571b4c9d95b908ab9e3c5 100644 (file)
@@ -158,4 +158,4 @@ namespace X86ISA {
         }
         return true;
     }
-} //namespace X86ISA
+} // namespace X86ISA
index 6f92cfacfe197c74fee02dc4a93e3ffcf9d3e7d5..1999f6611e6843784c1c90615beefb3dec2df40c 100644 (file)
@@ -186,7 +186,7 @@ X86NativeTrace::check(NativeTraceRecord *record)
     checkXMM(15, mState.xmm, nState.xmm);
 }
 
-} /* namespace Trace */
+} // namespace Trace
 
 ////////////////////////////////////////////////////////////////////////
 //
index afa2a463d12696e938bdbcd2e5778f6021048c0c..c68f01455a156f966b8a65d03ca5b0514ba29fc8 100644 (file)
@@ -85,6 +85,6 @@ class X86NativeTrace : public NativeTrace
     void check(NativeTraceRecord *record);
 };
 
-} /* namespace Trace */
+} // namespace Trace
 
 #endif // __ARCH_X86_NATIVETRACE_HH__
index ea737fa63c539950f36a3ad16570c9551863148f..5882132e5712fabdec54c4247384d9612df0ccc7 100644 (file)
@@ -111,6 +111,6 @@ typedef union
 
 typedef uint16_t RegIndex;
 
-}; // namespace X86ISA
+} // namespace X86ISA
 
 #endif // __ARCH_X86_REGFILE_HH__
index 52d9cdf9cd9c5f6c9c99ea6a0236101ce3a6cae0..7fa2e172cc6d31116ee85e1798e8bc7753d712f4 100644 (file)
@@ -737,7 +737,7 @@ TLB::unserialize(Checkpoint *cp, const std::string &section)
 {
 }
 
-/* end namespace X86ISA */ }
+} // namespace X86ISA
 
 X86ISA::TLB *
 X86TLBParams::create()
index 88d5bfe58c48d0b676b5e3d24dfd55b40a0ef161..756e9d526f17083f4b01bef26246dd2a24dbaa21 100644 (file)
@@ -243,4 +243,4 @@ skipFunction(ThreadContext *tc)
 }
 
 
-} //namespace X86_ISA
+} // namespace X86_ISA
index 5c11e501c297b47301128965673040c199c5d4f8..4f825c0976b384238a7d7ad24eddc9d10b3dc566 100644 (file)
@@ -291,4 +291,4 @@ Print::end_args()
     stream.precision(saved_precision);
 }
 
-/* end namespace cp */ }
+} // namespace cp
index 2920e210d3ec8809783307991a26bdcf1b6abac9..cd5d642c1f705b12c8922d46eed5254cf5487669 100644 (file)
@@ -125,7 +125,7 @@ struct Print
     void end_args();
 };
 
-/* end namespace cp */ }
+} // namespace cp
 
 typedef VarArgs::List<cp::Print> CPrintfArgsList;
 
index eac1c6dc788d53935675572c92f0800a17a49ebb..e3a72bcf52f7353e906f63c18935993860d82397 100644 (file)
@@ -92,6 +92,6 @@ namespace __hash_namespace {
             return (__stl_hash_string(r.first.c_str())) ^ r.second;
         }
     };
-/* namespace __hash_namespace */ }
+} // namespace __hash_namespace
 
 #endif // __HASHMAP_HH__
index 3f804b01cd0c6afef9ae78689f11adf26fc0447b..e4612c02d68ba72bf34030e5346e58b408342059 100644 (file)
@@ -297,4 +297,4 @@ hsplit(const EthPacketPtr &ptr)
 }
 
 
-/* namespace Net */ }
+} // namespace Net
index b2a84e279acb15c0f344f1eebe962c6ab569a813..ecb0882899de1ca87b718a50f3e43139b4eecc25 100644 (file)
@@ -472,6 +472,6 @@ uint16_t cksum(const UdpPtr &ptr);
 
 int hsplit(const EthPacketPtr &ptr);
 
-/* namespace Net */ }
+} // namespace Net
 
 #endif // __BASE_INET_HH__
index 2416c766a19db8b8da38a108b66a16cf755d617f..3216bcf43882672d9f57b0bec467f3a7fa286b41 100644 (file)
@@ -109,4 +109,4 @@ Connection::query(const string &sql)
 }
 
 
-/* namespace MySQL */ }
+} // namespace MySQL
index 272a0f07ce59bee3318c456579c6704715316b8a..c9051bd2b6f30c6f53c35dddbaa620b029146405 100644 (file)
@@ -420,6 +420,6 @@ class Statement
 }
 #endif
 
-/* namespace MySQL */ }
+} // namespace MySQL
 
 #endif // __BASE_MYSQL_HH__
index 853f3a58d2c56706afa282de34fb6c33ac02852d..1e108298a301d983c67020dbc1cd806e5a5a9699 100644 (file)
@@ -377,4 +377,4 @@ registerResetCallback(Callback *cb)
     resetQueue.add(cb);
 }
 
-/* namespace Stats */ }
+} // namespace Stats
index 7eb769e43039bc7e99983b1466800f0d87bfc6f1..3bb74282a71ff30e9ee752c25b3893b22f1743f2 100644 (file)
@@ -2784,6 +2784,6 @@ void registerResetCallback(Callback *cb);
 
 std::list<Info *> &statsList();
 
-/* namespace Stats */ }
+} // namespace Stats
 
 #endif // __BASE_STATISTICS_HH__
index e5b9e4a65a956912a56c168d89586d31ec970260..421ed4a5551cbe38e633adca07f3740a056f2023 100644 (file)
@@ -232,6 +232,6 @@ class FormulaInfo : public VectorInfo
 };
 
 
-/* namespace Stats */ }
+} // namespace Stats
 
 #endif // __BASE_STATS_INFO_HH__
index 9d2dadb01bc79adc25b01f339b4a62587ae6b1be..d947122da18fc07c267742ce6e7c253c46339fa3 100644 (file)
@@ -836,4 +836,4 @@ initMySQL(string host, string user, string password, string database,
     return true;
 }
 
-/* end namespace Stats */ }
+} // namespace Stats
index 687f030f2bdef2d104c3cc0b90cd93cb279f17d8..a09ee095c74cc7890e9f7aa33540355735a0fb27 100644 (file)
@@ -179,6 +179,6 @@ initMySQL(std::string host, std::string user, std::string password,
 }
 #endif
 
-/* namespace Stats */ }
+} // namespace Stats
 
 #endif // __BASE_STATS_MYSQL_HH__
index 7207cd841f3a2946a5ead72ed53bfcf1897a3808..29ca168dd065dad121e99f80eecd8290a0d862aa 100644 (file)
@@ -62,6 +62,6 @@ struct MySqlRun
     uint16_t run() const { return run_id; }
 };
 
-/* namespace Stats */ }
+} // namespace Stats
 
 #endif // __BASE_STATS_MYSQL_RUN_HH__
index ae2c9db5ebc73d5a6a0791dffba62598db496753..9d110e4eee9254822055c31d6e313de6770f70c9 100644 (file)
@@ -63,7 +63,7 @@ dump()
     }
 }
 
-/* namespace Stats */ }
+} // namespace Stats
 
 void
 debugDumpStats()
index 4fe93791f866bd2ed2ee1da08a0d1de1b4a8efd2..0f485dee3f75d27078713014d9f722954b72628c 100644 (file)
@@ -44,6 +44,6 @@ struct Output : public Visit
     virtual bool valid() const = 0;
 };
 
-/* namespace Stats */ }
+} // namespace Stats
 
 #endif // __BASE_STATS_OUTPUT_HH__
index 425a917efdd6806c5e875d384756044b39949a3e..576f7e5d4e739378acc7e29b77ca8ca6b85ff42d 100644 (file)
@@ -594,4 +594,4 @@ initText(const string &filename, bool desc)
     return true;
 }
 
-/* namespace Stats */ }
+} // namespace Stats
index 0cb66ded815662163c817e4de75f9e79f5effb8a..ab85128596fdfdc514b2ff49784bab5791df7a95 100644 (file)
@@ -75,6 +75,6 @@ class Text : public Output
 
 bool initText(const std::string &filename, bool desc);
 
-/* namespace Stats */ }
+} // namespace Stats
 
 #endif // __BASE_STATS_TEXT_HH__
index 87cf91653a098401cfff89b23acbf9688d2b10f2..9faa8d33d0a84d216cdf006360db678e1d4d4bd4 100644 (file)
@@ -53,6 +53,6 @@ typedef std::vector<Result> VResult;
 typedef unsigned int size_type;
 typedef unsigned int off_type;
 
-/* namespace Stats */ }
+} // namespace Stats
 
 #endif // __BASE_STATS_TYPES_HH__
index 6680eaa09df30c7673f0848e9a6cec091bf2bf21..1d13bc25d06e657166f1f93bfa61b17ec1ce127c 100644 (file)
@@ -38,4 +38,4 @@ Visit::Visit()
 Visit::~Visit()
 {}
 
-/* namespace Stats */ }
+} // namespace Stats
index f5c2fc34ca9a1b30bc8767d0af55571e86894540..fae7a88830f248fdf08dae71a2ac674bd108d700 100644 (file)
@@ -55,6 +55,6 @@ struct Visit
     virtual void visit(const FormulaInfo &info) = 0;
 };
 
-/* namespace Stats */ }
+} // namespace Stats
 
 #endif // __BASE_STATS_VISIT_HH__
index 9add7b8b679bee40c3fcf2f4d2134c1c6233e8d7..a34ca7bb656291fb39cdc1e82343cf1cc3bfb0e9 100644 (file)
@@ -92,7 +92,7 @@ operator<<(std::ostream& out, const C<T,A> &vec)
     return out;
 }
 
-/* namespace stl_helpers */ }
-/* namespace m5 */ }
+} // namespace stl_helpers
+} // namespace m5
 
 #endif // __BASE_STL_HELPERS_HH__
index 0a7e6e83344bd71c9fbdebaa3ea59c3c03a1f872..22e05e6641908fb0026959152caaad518fc1a79c 100644 (file)
@@ -188,7 +188,7 @@ dumpStatus()
     }
 }
 
-/* namespace Trace */ }
+} // namespace Trace
 
 
 // add a set of functions that can easily be invoked from gdb
index 6f8c196b09671d6a1185cd765ecb89a01a000942..f793abff9597af5ef425fddf1131d929e0fa3228 100644 (file)
@@ -60,7 +60,7 @@ void dprintf(Tick when, const std::string &name, const char *format,
              CPRINTF_DECLARATION);
 void dump(Tick when, const std::string &name, const void *data, int len);
 
-/* namespace Trace */ }
+} // namespace Trace
 
 // This silly little class allows us to wrap a string in a functor
 // object so that we can give a name() that DPRINTF will like
index 4328f20570a6441e8b317f984a92e5ad611ab712..87c98d0060204d4ec50800436819f2792ace1054 100644 (file)
@@ -303,6 +303,6 @@ class List
     }
 };
 
-/* end namespace VarArgs */ }
+} // namespace VarArgs
 
 #endif /* __BASE_VARARGS_HH__ */
index f8b25ef73ee63284f7838fd33c3f5248b66c1c51..760e5bd514d6fab20d3a8c4138eea93640e59c59 100644 (file)
@@ -155,7 +155,7 @@ Trace::ExeTracerRecord::dump()
     }
 }
 
-/* namespace Trace */ }
+} // namespace Trace
 
 ////////////////////////////////////////////////////////////////////////
 //
index 65950728bb368b0bccce19f8a8f767efe7390c31..5dc65b48b386f4309028809c376ca401e22b1dc1 100644 (file)
@@ -86,6 +86,6 @@ class ExeTracer : public InstTracer
     }
 };
 
-/* namespace Trace */ }
+} // namespace Trace
 
 #endif // __CPU_EXETRACE_HH__
index 70a94767119a6b925b33beda3936e35e42e289da..75f6be63de422b8d4ab8c1a03246794af2619380 100644 (file)
@@ -81,7 +81,7 @@ InOrderTrace::getInstRecord(Tick when, ThreadContext *tc,
     return new InOrderTraceRecord(ThePipeline::NumStages, true, tc, _pc);
 }
 
-/* namespace Trace */ }
+} // namespace Trace
 
 ////////////////////////////////////////////////////////////////////////
 //
index fd142750015b94af5df0f0d4fdcf329db78cc94a..5386f641dd25655620a0d52b608ca247491901e5 100644 (file)
@@ -93,6 +93,6 @@ class InOrderTrace : public InstTracer
             const StaticInstPtr macroStaticInst = NULL);
 };
 
-/* namespace Trace */ }
+} // namespace Trace
 
 #endif // __CPU_INORDER_INORDER_TRACE_HH__
index ee148c50fd59cfe72e281a7f655052524705bfe3..0d1d003d199fbbf1fcdf9d1b942944c34ac72312 100644 (file)
@@ -57,7 +57,7 @@ Trace::IntelTraceRecord::dump()
     outs << endl;
 }
 
-/* namespace Trace */ }
+} // namespace Trace
 
 ////////////////////////////////////////////////////////////////////////
 //
index 234b173e9907eaf69cc71cd86cf6e97ed39edadb..5083318ad2870c804ba53b10a8d362cd766d1226 100644 (file)
@@ -82,6 +82,6 @@ class IntelTrace : public InstTracer
     }
 };
 
-/* namespace Trace */ }
+} // namespace Trace
 
 #endif // __CPU_INTELTRACE_HH__
index 8750e56e51671778be8c55e1ecdd28a8f4dca708..49b2f513cf7530d54f4e111682c5f41e84294f47 100644 (file)
@@ -587,7 +587,7 @@ Trace::LegionTraceRecord::dump()
     } // if not microop
 }
 
-/* namespace Trace */ }
+} // namespace Trace
 
 ////////////////////////////////////////////////////////////////////////
 //
index a60b9ad10bbd896beb3da04160e8472e05d25aa2..24957e40a1c056e939b24c696c6a5f66dfe3bd49 100644 (file)
@@ -76,6 +76,6 @@ class LegionTrace : public InstTracer
     }
 };
 
-/* namespace Trace */ }
+} // namespace Trace
 
 #endif // __CPU_LEGIONTRACE_HH__
index 8c17eb825fd58f05605bba78af7723abfe407792..9660c0e1366294b1710e35d9bb34c8b8ed213dc4 100644 (file)
@@ -62,4 +62,4 @@ Trace::NativeTraceRecord::dump()
         parent->check(this);
 }
 
-} /* namespace Trace */
+} // namespace Trace
index 5c5b9a66d2b83a0758a4cdc821e478c930e19a09..cc388d6bf18c480f02d122364d89ae3603664449 100644 (file)
@@ -119,6 +119,6 @@ class NativeTrace : public ExeTracer
     check(NativeTraceRecord *record) = 0;
 };
 
-} /* namespace Trace */
+} // namespace Trace
 
 #endif // __CPU_NATIVETRACE_HH__
index 16bf57d5895e61dd89db5b37285482936c10796e..98216e64c56270334a6d6f36a2319d4cc61b845f 100644 (file)
@@ -220,6 +220,6 @@ struct ChanRegs {
 
 };
 
-} //namespace CopyEngineReg
+} // namespace CopyEngineReg
 
 
index c37a6dc0eb5cdd78fc1408ed92abba70f10106c7..71a7c16da57f9d4f06c752014c1d65d5cc527d72 100644 (file)
@@ -851,4 +851,4 @@ struct Regs {
         UNSERIALIZE_SCALAR(sw_fw_sync);
     }
 };
-} // iGbReg namespace
+} // namespace iGbReg
index 86090e04837358d553c9586ae580dbcc04eba5da..2183d9d998f29b44bbf134838d32993ae377a1ec 100644 (file)
@@ -1714,7 +1714,7 @@ Device::unserialize(Checkpoint *cp, const std::string &section)
 
 }
 
-/* namespace Sinic */ }
+} // namespace Sinic
 
 Sinic::Device *
 SinicParams::create()
index d2124d8ceaea8560838249fd77bfffd59c288694..0da7ccae4bf249389c0f15db122660903b2c1284 100644 (file)
@@ -349,6 +349,6 @@ class Interface : public EtherInt
     virtual void sendDone() { dev->transferDone(); }
 };
 
-/* namespace Sinic */ }
+} // namespace Sinic
 
 #endif // __DEV_SINIC_HH__
index 7ac7abad0ca5f8d104eea42a79a7f963f64329e2..43dc46dc4c11f9eac8b9403d2f28c33441da4ffe 100644 (file)
@@ -178,7 +178,7 @@ struct Info
     const char *name;
 };
 
-/* namespace Regs */ }
+} // namespace Regs
 
 inline const Regs::Info&
 regInfo(Addr daddr)
@@ -234,6 +234,6 @@ regValid(Addr daddr)
     return true;
 }
 
-/* namespace Sinic */ }
+} // namespace Sinic
 
 #endif // __DEV_SINICREG_HH__
index 76276dbc1204eb8d221187756eb19a0cbb2efff2..22cd9e3afdcb68992396d92c20b0962d1b30c214 100644 (file)
@@ -84,6 +84,6 @@ class Cmos : public BasicPioDevice
     Tick write(PacketPtr pkt);
 };
 
-}; // namespace X86ISA
+} // namespace X86ISA
 
 #endif //__DEV_X86_CMOS_HH__
index 8a941f9a5eb91c33c107c921f255ac67d9badfa6..7aa59e9a78b0011677ec90c017d8b2c56e7652d0 100644 (file)
@@ -254,6 +254,6 @@ class I8042 : public BasicPioDevice
     Tick write(PacketPtr pkt);
 };
 
-}; // namespace X86ISA
+} // namespace X86ISA
 
 #endif //__DEV_X86_I8042_HH__
index c3a832aa944f2a84801165ce82ab6e6d512404f5..70717f6ba0f3fe020213700b6a23ca4443fc95f6 100644 (file)
@@ -132,6 +132,6 @@ class I82094AA : public PioDevice, public IntDev
     void registerLocalApic(int id, Interrupts *localApic);
 };
 
-}; // namespace X86ISA
+} // namespace X86ISA
 
 #endif //__DEV_X86_SOUTH_BRIDGE_I8254_HH__
index 2d73b8ab5bd532b0f9747baa2d4f64156a694303..1db91236a80b20d5c82afb03de42530b2c120038 100644 (file)
@@ -61,6 +61,6 @@ class I8237 : public BasicPioDevice
     Tick write(PacketPtr pkt);
 };
 
-}; // namespace X86ISA
+} // namespace X86ISA
 
 #endif //__DEV_X86_I8237_HH__
index 7de20dfd4a06fc313b1de1e31d61b81e76a33bbc..e295f5105cd0f33a646ebafe3812ed73de7945c7 100644 (file)
@@ -111,6 +111,6 @@ class I8254 : public BasicPioDevice
     }
 };
 
-}; // namespace X86ISA
+} // namespace X86ISA
 
 #endif //__DEV_X86_SOUTH_BRIDGE_I8254_HH__
index a9c5baa8c80df95ec2b19cfece06f7a9b58aa8c0..a9362d403d29c1e4d8a0368c7a45f5e26134df2e 100644 (file)
@@ -110,6 +110,6 @@ class I8259 : public BasicPioDevice, public IntDev
     int getVector();
 };
 
-}; // namespace X86ISA
+} // namespace X86ISA
 
 #endif //__DEV_X86_I8259_HH__
index 8f5f8707e14f1e7f23865bd0c74c0a0e5414f31c..b01d36e37f3f9016cbf9461940f0110213761822 100644 (file)
@@ -234,6 +234,6 @@ class IntLine : public SimObject
     }
 };
 
-}; // namespace X86ISA
+} // namespace X86ISA
 
 #endif //__DEV_X86_INTDEV_HH__
index 6778dcb2837e388878009c6c675dfe0cf9b21b44..fb7476ca0a3181e4b43e2236af8bdddd0cb78944 100644 (file)
@@ -74,6 +74,6 @@ class Speaker : public BasicPioDevice
     Tick write(PacketPtr pkt);
 };
 
-}; // namespace X86ISA
+} // namespace X86ISA
 
 #endif //__DEV_X86_SPEAKER_HH__
index 29c77b3d9adae8f25bada84d6c32566efd3a4fca..aa9342a1311bc15799ee1d3cd9f7609f547b72fc 100644 (file)
@@ -139,4 +139,4 @@ Statistics::unserialize(Checkpoint *cp, const string &section)
     UNSERIALIZE_SCALAR(iplLastTick);
 }
 
-/* end namespace Kernel */ }
+} // namespace Kernel
index cd3c12d47602bfdb4c992be823dc37dc608ab440..5395b3337f8da4fd1177ca4bd36ac995399063c7 100644 (file)
@@ -85,6 +85,6 @@ class Statistics : public Serializable
     virtual void unserialize(Checkpoint *cp, const std::string &section);
 };
 
-/* end namespace Kernel */ }
+} // namespace Kernel
 
 #endif // __KERNEL_STATS_HH__
index 23b683d6902466f8c474935420bf9e78e537bcdf..89e1929a0ed3eaf0866cef72ba32d240373cb065 100644 (file)
@@ -277,7 +277,7 @@ template <> struct hash<Address>
         return (size_t)s.getAddress();
     }
 };
-/* namespace __hash_namespace */ }
+} // namespace __hash_namespace
 
 namespace std {
 template <> struct equal_to<Address>
@@ -288,6 +288,6 @@ template <> struct equal_to<Address>
         return s1 == s2;
     }
 };
-/* namespace std */ }
+} // namespace std
 
 #endif // __MEM_RUBY_COMMON_ADDRESS_HH__
index 710f85fde1b0543fa0b016cdbdadc9035f47d291..00c18976d2a2e2e067034f26c0a7126993c3d5f7 100644 (file)
@@ -126,7 +126,7 @@ def default_swig_objdecls(cls, code):
     code('{};')
 
     for ns in reversed(namespaces):
-        code('/* namespace $ns */ }')
+        code('} // namespace $ns')
 
 def public_value(key, value):
     return key.startswith('_') or \
@@ -390,7 +390,7 @@ class MetaSimObject(type):
             code('namespace $ns {')
         code('class $0;', class_path[-1])
         for ns in reversed(class_path[:-1]):
-            code('/* namespace $ns */ }')
+            code('} // namespace $ns')
         code()
 
         for param in params:
index 0093a411d6bfd8bd3fc703e55750d406eae317a0..2c3925d99138752ae7ff4ea875eea43d26765797 100644 (file)
@@ -1004,7 +1004,7 @@ namespace Enums {
         code.dedent(2)
         code('''
     };
-/* namespace Enums */ }
+} // namespace Enums
 ''')
 
 # Base class for enum types.
index fc4a83394d35fae857836858228bc9922d549f99..eaa4c31c841757a83b4e9de71d9bc339f3f77b4b 100644 (file)
@@ -59,4 +59,4 @@ void reset();
 
 std::list<Info *> &statsList();
 
-/* namespace Stats */ }
+} // namespace Stats
index 32642c8a4c801f3145fe5d611287b0c2e5deb0de..1b7a034f0c11202d23590ecada1f86df91b6a50c 100644 (file)
@@ -55,7 +55,7 @@ double Hz;
 double kHz;
 double MHz;
 double GHZ;
-/* namespace Float */ }
+} // namespace Float
 
 namespace Int {
 Tick s;
@@ -63,9 +63,9 @@ Tick ms;
 Tick us;
 Tick ns;
 Tick ps;
-/* namespace Float */ }
+} // namespace Float
 
-/* namespace SimClock */ }
+} // namespace SimClock
 
 void
 setClockFrequency(Tick ticksPerSecond)
index 8be1dd259fa368b982c3002e0993cee36d8e600a..074ce32b6c394f7c435eeab7920eb33cfa108fc5 100644 (file)
@@ -55,7 +55,7 @@ extern double Hz;
 extern double kHz;
 extern double MHz;
 extern double GHZ;
-/* namespace Float */ }
+} // namespace Float
 
 namespace Int {
 extern Tick s;
@@ -63,8 +63,8 @@ extern Tick ms;
 extern Tick us;
 extern Tick ns;
 extern Tick ps;
-/* namespace Int */ }
-/* namespace SimClock */ }
+} // namespace Int
+} // namespace SimClock
 
 void setClockFrequency(Tick ticksPerSecond);
 
index 1ff67d2cbd6ec4fb4fce617be171923ab543e990..2afea07ea685b127c070a48b41c4100e425b4dc1 100644 (file)
@@ -170,6 +170,6 @@ class InstTracer : public SimObject
 
 
 
-}; // namespace Trace
+} // namespace Trace
 
 #endif // __INSTRECORD_HH__
index 7a91bfbd4d2e459f52c81f6934ed58450c157254..683397116f591f7a4ee4d9314cff4a9fb63fcdba 100644 (file)
@@ -326,4 +326,4 @@ switchcpu(ThreadContext *tc)
     exitSimLoop("switchcpu");
 }
 
-/* namespace PseudoInst */ }
+} // namespace PseudoInst
index 847dcede0465aabd638f8eaa60228bd16174a7a6..2f96711551143236d2caf05d4d05d60fc54d5048 100644 (file)
@@ -64,4 +64,4 @@ void m5checkpoint(ThreadContext *tc, Tick delay, Tick period);
 void debugbreak(ThreadContext *tc);
 void switchcpu(ThreadContext *tc);
 
-/* namespace PseudoInst */ }
+} // namespace PseudoInst
index 07e1b2380e1d917294cff4835d9450b3ddb16812..83861c18599565bc54a19f9351316691e0bc2316 100644 (file)
@@ -201,4 +201,4 @@ StatEvent(bool dump, bool reset, Tick when, Tick repeat)
     mainEventQueue.schedule(event, when);
 }
 
-/* namespace Stats */ }
+} // namespace Stats
index 1efa2554eda6ee4c7f54e9732f22fc0aad78f7ec..78031b666411399e30b822cef5bf01e298ccce8a 100644 (file)
@@ -36,6 +36,6 @@ namespace Stats {
 void initSimStats();
 void StatEvent(bool dump, bool reset, Tick when = curTick, Tick repeat = 0);
 
-/* namespace Stats */ }
+} // namespace Stats
 
 #endif // __SIM_STAT_CONTROL_HH__