POWER: Add a stub implementation of initCPU.
authorGabe Black <gblack@eecs.umich.edu>
Sun, 13 Nov 2011 20:40:15 +0000 (12:40 -0800)
committerGabe Black <gblack@eecs.umich.edu>
Sun, 13 Nov 2011 20:40:15 +0000 (12:40 -0800)
src/arch/power/utility.cc
src/arch/power/utility.hh

index e7881fcaea659ee9a16d27ef88b109ad39cdd22c..e3fa246fc3e39cfff34bf889e74844a27746ac40 100644 (file)
@@ -68,5 +68,11 @@ skipFunction(ThreadContext *tc)
     panic("Not Implemented for POWER");
 }
 
+void
+initCPU(ThreadContext *tc, int cpuId)
+{
+    panic("initCPU not implemented for POWER.\n");
+}
+
 
 } // namespace PowerISA
index 0dc9294a5f8d3eb80e49dce9a9eca363d0b29c29..c3868c18945415ac878b09f4d35ed5519397a9b0 100644 (file)
@@ -92,6 +92,8 @@ getExecutingAsid(ThreadContext *tc)
     return 0;
 }
 
+void initCPU(ThreadContext *, int cpuId);
+
 } // namespace PowerISA