diff options
Diffstat (limited to 'cpu/base.hh')
-rw-r--r-- | cpu/base.hh | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/cpu/base.hh b/cpu/base.hh index d9d5d2b88..79700c117 100644 --- a/cpu/base.hh +++ b/cpu/base.hh @@ -38,11 +38,8 @@ #include "sim/sim_object.hh" #include "arch/isa_traits.hh" -#if FULL_SYSTEM class System; namespace Kernel { class Statistics; } -#endif - class BranchPred; class ExecContext; @@ -123,8 +120,8 @@ class BaseCPU : public SimObject Tick clock; bool functionTrace; Tick functionTraceStart; -#if FULL_SYSTEM System *system; +#if FULL_SYSTEM int cpu_id; Tick profile; #endif @@ -173,9 +170,9 @@ class BaseCPU : public SimObject */ EventQueue **comLoadEventQueue; -#if FULL_SYSTEM System *system; +#if FULL_SYSTEM /** * Serialize this object to the given output stream. * @param os The stream to serialize to. |