diff options
author | Steve Reinhardt <stever@eecs.umich.edu> | 2003-12-11 08:29:52 -0800 |
---|---|---|
committer | Steve Reinhardt <stever@eecs.umich.edu> | 2003-12-11 08:29:52 -0800 |
commit | 7c708c8d1b9b251439227cfb49006f0b149cf197 (patch) | |
tree | 5a5484973af34786b50dc5430af4348f6791552b /cpu | |
parent | 777c1ebfab0318d4b98834b0f2ef48a2de16b8dd (diff) | |
download | gem5-7c708c8d1b9b251439227cfb49006f0b149cf197.tar.xz |
- Switch events to use a priority enum instead of integers.
This lets us centralize priorities so we can see what's going on.
- Shift serialize & cpu-switch events to happen before CPU ticks (to be
consistent with starting new CPU on same cycle instead of next cycle).
- Get rid of unnecessary bus stats reset callback.
cpu/simple_cpu/simple_cpu.cc:
sim/debug.cc:
sim/eventq.hh:
sim/serialize.cc:
sim/sim_events.cc:
sim/sim_events.hh:
Switch events to use a priority enum instead of integers.
This lets us centralize priorities so we can see what's going on.
--HG--
extra : convert_revision : 510d79b43c0a1c97a10eb65916f7335b1de8b956
Diffstat (limited to 'cpu')
-rw-r--r-- | cpu/simple_cpu/simple_cpu.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cpu/simple_cpu/simple_cpu.cc b/cpu/simple_cpu/simple_cpu.cc index 2bbfb82f1..adbd17a35 100644 --- a/cpu/simple_cpu/simple_cpu.cc +++ b/cpu/simple_cpu/simple_cpu.cc @@ -75,7 +75,7 @@ using namespace std; SimpleCPU::TickEvent::TickEvent(SimpleCPU *c) - : Event(&mainEventQueue, 100), cpu(c) + : Event(&mainEventQueue, CPU_Tick_Pri), cpu(c) { } |