diff options
author | Nilay Vaish <nilay@cs.wisc.edu> | 2012-11-16 10:27:47 -0600 |
---|---|---|
committer | Nilay Vaish <nilay@cs.wisc.edu> | 2012-11-16 10:27:47 -0600 |
commit | 2d6470936ca06310b213117159fa0010259708cd (patch) | |
tree | 24fc62d3c1b27711fecadffacc722bbae45c3df9 /src/dev/mc146818.hh | |
parent | 2680c827bee835175d780b82b93590e2b3467591 (diff) | |
download | gem5-2d6470936ca06310b213117159fa0010259708cd.tar.xz |
sim: have a curTick per eventq
This patch adds a _curTick variable to an eventq. This variable is updated
whenever an event is serviced in function serviceOne(), or all events upto
a particular time are processed in function serviceEvents(). This change
helps when there are eventqs that do not make use of curTick for scheduling
events.
Diffstat (limited to 'src/dev/mc146818.hh')
-rw-r--r-- | src/dev/mc146818.hh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/dev/mc146818.hh b/src/dev/mc146818.hh index c2f1e2dd8..0c7baf47b 100644 --- a/src/dev/mc146818.hh +++ b/src/dev/mc146818.hh @@ -33,7 +33,7 @@ #ifndef __DEV_MC146818_HH__ #define __DEV_MC146818_HH__ -#include "sim/eventq.hh" +#include "sim/eventq_impl.hh" /** Real-Time Clock (MC146818) */ class MC146818 : public EventManager |