Clean up some formatting
authorNathan Binkert <binkertn@umich.edu>
Fri, 30 Sep 2005 17:34:43 +0000 (13:34 -0400)
committerNathan Binkert <binkertn@umich.edu>
Fri, 30 Sep 2005 17:34:43 +0000 (13:34 -0400)
kern/linux/linux_system.cc:
    remove random character
kern/linux/linux_threadinfo.hh:
    Formatting fixes

--HG--
extra : convert_revision : 2be4772d7455ea1f4eb22966e00831701b7cbc27

kern/linux/linux_system.cc
kern/linux/linux_threadinfo.hh

index addce0389a7848f3da3a66ae11e880ec9061de32..1144b9bdd4e686ce599eb394e55d9675363ba88c 100644 (file)
@@ -121,7 +121,7 @@ LinuxSystem::LinuxSystem(Params *p)
 #endif
 
     /**
-v     * Any time ide_delay_50ms, calibarte_delay or
+     * Any time ide_delay_50ms, calibarte_delay or
      * determine_cpu_caches is called just skip the
      * function. Currently determine_cpu_caches only is used put
      * information in proc, however if that changes in the future we
index 253b122bc5023b991b3151080720a81947c58c64..0c60b9f5c80c9fee76e40f7d154c7c2f37607eea 100644 (file)
  * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  */
 
-#ifndef __LINUX_TREADNIFO_HH__
-#define __LINUX_TREADNIFO_HH__
+#ifndef __KERN_LINUX_LINUX_TREADNIFO_HH__
+#define __KERN_LINUX_LINUX_TREADNIFO_HH__
 
-
-#include "targetarch/vptr.hh"
 #include "kern/linux/thread_info.hh"
 #include "kern/linux/sched.hh"
-
+#include "targetarch/vptr.hh"
 
 namespace Linux {
 
 class ThreadInfo
 {
-    private:
-        ExecContext *xc;
+  private:
+    ExecContext *xc;
 
-    public:
-        ThreadInfo(ExecContext *exec) : xc(exec) {}
-        ~ThreadInfo() {}
+  public:
+    ThreadInfo(ExecContext *exec) : xc(exec) {}
+    ~ThreadInfo() {}
 
-        inline VPtr<thread_info>
-        curThreadInfo()
-        {
-            Addr current;
+    inline VPtr<thread_info>
+    curThreadInfo()
+    {
+        Addr current;
 
-            /* Each kernel stack is only 2 pages, the start of which is the
-             * thread_info struct. So we can get the address by masking off
-             * the lower 14 bits.
-             */
-            current = xc->regs.intRegFile[StackPointerReg] & ~0x3fff;
-            return VPtr<thread_info>(xc, current);
-        }
+        /* Each kernel stack is only 2 pages, the start of which is the
+         * thread_info struct. So we can get the address by masking off
+         * the lower 14 bits.
+         */
+        current = xc->regs.intRegFile[StackPointerReg] & ~0x3fff;
+        return VPtr<thread_info>(xc, current);
+    }
 
-        inline VPtr<task_struct>
-        curTaskInfo()
-        {
-            Addr task = curThreadInfo()->task;
-            return VPtr<task_struct>(xc, task);
-        }
+    inline VPtr<task_struct>
+    curTaskInfo()
+    {
+        Addr task = curThreadInfo()->task;
+        return VPtr<task_struct>(xc, task);
+    }
 
-        std::string
-        curTaskName()
-        {
-            return curTaskInfo()->name;
-        }
+    std::string
+    curTaskName()
+    {
+        return curTaskInfo()->name;
+    }
 
-        int32_t
-        curTaskPID()
-        {
-            return curTaskInfo()->pid;
-        }
+    int32_t
+    curTaskPID()
+    {
+        return curTaskInfo()->pid;
+    }
 
-        uint64_t
-        curTaskStart()
-        {
-            return curTaskInfo()->start;
-        }
+    uint64_t
+    curTaskStart()
+    {
+        return curTaskInfo()->start;
+    }
 };
-}
 
-#endif /* __LINUX_THREADINFO_HH__ */
+/* namespace Linux */ }
+
+#endif // __KERN_LINUX_LINUX_THREADINFO_HH__