base.cc (8733:64a7bf8fa56c) base.cc (8737:770ccf3af571)
1/*
2 * Copyright (c) 2010-2011 ARM Limited
3 * All rights reserved
4 *
5 * The license below extends only to copyright in the software and shall
6 * not be construed as granting a license to any other intellectual
7 * property including but not limited to intellectual property relating
8 * to a hardware implementation of the functionality of the software

--- 125 unchanged lines hidden (view full) ---

134 stayAtPC = false;
135}
136
137BaseSimpleCPU::~BaseSimpleCPU()
138{
139}
140
141void
1/*
2 * Copyright (c) 2010-2011 ARM Limited
3 * All rights reserved
4 *
5 * The license below extends only to copyright in the software and shall
6 * not be construed as granting a license to any other intellectual
7 * property including but not limited to intellectual property relating
8 * to a hardware implementation of the functionality of the software

--- 125 unchanged lines hidden (view full) ---

134 stayAtPC = false;
135}
136
137BaseSimpleCPU::~BaseSimpleCPU()
138{
139}
140
141void
142BaseSimpleCPU::deallocateContext(int thread_num)
142BaseSimpleCPU::deallocateContext(ThreadID thread_num)
143{
144 // for now, these are equivalent
145 suspendContext(thread_num);
146}
147
148
149void
143{
144 // for now, these are equivalent
145 suspendContext(thread_num);
146}
147
148
149void
150BaseSimpleCPU::haltContext(int thread_num)
150BaseSimpleCPU::haltContext(ThreadID thread_num)
151{
152 // for now, these are equivalent
153 suspendContext(thread_num);
154}
155
156
157void
158BaseSimpleCPU::regStats()

--- 407 unchanged lines hidden ---
151{
152 // for now, these are equivalent
153 suspendContext(thread_num);
154}
155
156
157void
158BaseSimpleCPU::regStats()

--- 407 unchanged lines hidden ---