projects
/
gem5.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
0379a27
)
Fix to TsunamiIO unserialize
author
Andrew Schultz
<alschult@umich.edu>
Fri, 4 Jun 2004 20:04:55 +0000
(16:04 -0400)
committer
Andrew Schultz
<alschult@umich.edu>
Fri, 4 Jun 2004 20:04:55 +0000
(16:04 -0400)
dev/tsunami_io.cc:
Timers don't need to be rescheduled cause they aren't scheduled by
the default constructor
--HG--
extra : convert_revision :
afb68e4f0c4e2a2c98f0037e061752690080a503
dev/tsunami_io.cc
patch
|
blob
|
history
diff --git
a/dev/tsunami_io.cc
b/dev/tsunami_io.cc
index 2da313f563f90a0805ae444b5aa7e99098b8eee1..e757c805ee2ea91419b6e60444a40cafa179b310 100644
(file)
--- a/
dev/tsunami_io.cc
+++ b/
dev/tsunami_io.cc
@@
-413,8
+413,8
@@
TsunamiIO::unserialize(Checkpoint *cp, const std::string §ion)
UNSERIALIZE_SCALAR(time0when);
UNSERIALIZE_SCALAR(time2when);
UNSERIALIZE_SCALAR(rtcwhen);
- timer0.
re
schedule(time0when);
- timer2.
re
schedule(time2when);
+ timer0.schedule(time0when);
+ timer2.schedule(time2when);
rtc.reschedule(rtcwhen);
UNSERIALIZE_SCALAR(RTCAddress);
}