changeset 162fbf0095b5 in /z/repo/gem5
details: http://repo.gem5.org/gem5?cmd=changeset;node=162fbf0095b5
description:
        POWER: Add a stub implementation of initCPU.

diffstat:

 src/arch/power/utility.cc |  6 ++++++
 src/arch/power/utility.hh |  2 ++
 2 files changed, 8 insertions(+), 0 deletions(-)

diffs (27 lines):

diff -r 0dc424619109 -r 162fbf0095b5 src/arch/power/utility.cc
--- a/src/arch/power/utility.cc Sun Nov 13 12:40:15 2011 -0800
+++ b/src/arch/power/utility.cc Sun Nov 13 12:40:15 2011 -0800
@@ -68,5 +68,11 @@
     panic("Not Implemented for POWER");
 }
 
+void
+initCPU(ThreadContext *tc, int cpuId)
+{
+    panic("initCPU not implemented for POWER.\n");
+}
+
 
 } // namespace PowerISA
diff -r 0dc424619109 -r 162fbf0095b5 src/arch/power/utility.hh
--- a/src/arch/power/utility.hh Sun Nov 13 12:40:15 2011 -0800
+++ b/src/arch/power/utility.hh Sun Nov 13 12:40:15 2011 -0800
@@ -92,6 +92,8 @@
     return 0;
 }
 
+void initCPU(ThreadContext *, int cpuId);
+
 } // namespace PowerISA
 
 
_______________________________________________
gem5-dev mailing list
[email protected]
http://m5sim.org/mailman/listinfo/gem5-dev

Reply via email to