From: Gabe Black Date: Sun, 13 Nov 2011 20:40:15 +0000 (-0800) Subject: POWER: Add a stub implementation of initCPU. X-Git-Tag: stable_2012_06_28~282 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=ff4ba8261058f842ecceb48a5c4f0e120aaaf3a6;p=gem5.git POWER: Add a stub implementation of initCPU. --- diff --git a/src/arch/power/utility.cc b/src/arch/power/utility.cc index e7881fcae..e3fa246fc 100644 --- a/src/arch/power/utility.cc +++ b/src/arch/power/utility.cc @@ -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 diff --git a/src/arch/power/utility.hh b/src/arch/power/utility.hh index 0dc9294a5..c3868c189 100644 --- a/src/arch/power/utility.hh +++ b/src/arch/power/utility.hh @@ -92,6 +92,8 @@ getExecutingAsid(ThreadContext *tc) return 0; } +void initCPU(ThreadContext *, int cpuId); + } // namespace PowerISA