diff options
-rw-r--r-- | src/systemc/core/scheduler.hh | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/systemc/core/scheduler.hh b/src/systemc/core/scheduler.hh index ebe15462c..0d853f5c6 100644 --- a/src/systemc/core/scheduler.hh +++ b/src/systemc/core/scheduler.hh @@ -218,8 +218,7 @@ class Scheduler Tick delayed(const ::sc_core::sc_time &delay) { - //XXX We're assuming the systemc time resolution is in ps. - return getCurTick() + delay.value() * SimClock::Int::ps; + return getCurTick() + delay.value(); } // For scheduling delayed/timed notifications/timeouts. |