diff options
author | Ali Saidi <Ali.Saidi@ARM.com> | 2010-11-08 13:58:25 -0600 |
---|---|---|
committer | Ali Saidi <Ali.Saidi@ARM.com> | 2010-11-08 13:58:25 -0600 |
commit | a1e82259759ce7290269aeca6742098f1adbf2fd (patch) | |
tree | 2f93b2fe1d64c24cac0e5405f9f5a7b388c57592 /src/arch/arm/linux/system.cc | |
parent | 432fa0aad6092d6a9252f6a9c83c8b36509c1341 (diff) | |
download | gem5-a1e82259759ce7290269aeca6742098f1adbf2fd.tar.xz |
ARM: Add checkpointing support
Diffstat (limited to 'src/arch/arm/linux/system.cc')
-rw-r--r-- | src/arch/arm/linux/system.cc | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/arch/arm/linux/system.cc b/src/arch/arm/linux/system.cc index ddf7f19f3..38024c058 100644 --- a/src/arch/arm/linux/system.cc +++ b/src/arch/arm/linux/system.cc @@ -99,9 +99,9 @@ LinuxArmSystem::LinuxArmSystem(Params *p) } void -LinuxArmSystem::startup() +LinuxArmSystem::initState() { - ArmSystem::startup(); + ArmSystem::initState(); ThreadContext *tc = threadContexts[0]; // Set the initial PC to be at start of the kernel code @@ -117,7 +117,6 @@ LinuxArmSystem::~LinuxArmSystem() { } - LinuxArmSystem * LinuxArmSystemParams::create() { |