summaryrefslogtreecommitdiff
path: root/sim/sim_events.hh
diff options
context:
space:
mode:
authorSteve Reinhardt <stever@eecs.umich.edu>2003-12-11 08:29:52 -0800
committerSteve Reinhardt <stever@eecs.umich.edu>2003-12-11 08:29:52 -0800
commit7c708c8d1b9b251439227cfb49006f0b149cf197 (patch)
tree5a5484973af34786b50dc5430af4348f6791552b /sim/sim_events.hh
parent777c1ebfab0318d4b98834b0f2ef48a2de16b8dd (diff)
downloadgem5-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 'sim/sim_events.hh')
-rw-r--r--sim/sim_events.hh16
1 files changed, 8 insertions, 8 deletions
diff --git a/sim/sim_events.hh b/sim/sim_events.hh
index c4db248e0..4a8e7c115 100644
--- a/sim/sim_events.hh
+++ b/sim/sim_events.hh
@@ -43,23 +43,23 @@ class SimExitEvent : public Event
public:
SimExitEvent(const std::string &_cause, int c = 0)
- : Event(&mainEventQueue), cause(_cause),
+ : Event(&mainEventQueue, Sim_Exit_Pri), cause(_cause),
code(c)
- { schedule(curTick, 1000); }
+ { schedule(curTick); }
SimExitEvent(Tick _when, const std::string &_cause, int c = 0)
- : Event(&mainEventQueue), cause(_cause),
+ : Event(&mainEventQueue, Sim_Exit_Pri), cause(_cause),
code(c)
- { schedule(_when, 1000); }
+ { schedule(_when); }
SimExitEvent(EventQueue *q, const std::string &_cause, int c = 0)
- : Event(q), cause(_cause), code(c)
- { schedule(curTick, 1000); }
+ : Event(q, Sim_Exit_Pri), cause(_cause), code(c)
+ { schedule(curTick); }
SimExitEvent(EventQueue *q, Tick _when, const std::string &_cause,
int c = 0)
- : Event(q), cause(_cause), code(c)
- { schedule(_when, 1000); }
+ : Event(q, Sim_Exit_Pri), cause(_cause), code(c)
+ { schedule(_when); }
void process(); // process event