File tree 1 file changed +4
-4
lines changed
1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change 5
5
#include " debug_utils.h"
6
6
#include " util.h"
7
7
#include < algorithm>
8
+ #include < cmath>
8
9
#include < memory>
9
10
10
11
namespace node {
@@ -126,8 +127,7 @@ class WorkerThreadsTaskRunner::DelayedTaskScheduler {
126
127
delay_in_seconds_(delay_in_seconds) {}
127
128
128
129
void Run () override {
129
- uint64_t delay_millis =
130
- static_cast <uint64_t >(delay_in_seconds_ + 0.5 ) * 1000 ;
130
+ uint64_t delay_millis = llround (delay_in_seconds_ * 1000 );
131
131
std::unique_ptr<uv_timer_t > timer (new uv_timer_t ());
132
132
CHECK_EQ (0 , uv_timer_init (&scheduler_->loop_ , timer.get ()));
133
133
timer->data = task_.release ();
@@ -378,8 +378,8 @@ bool PerIsolatePlatformData::FlushForegroundTasksInternal() {
378
378
while (std::unique_ptr<DelayedTask> delayed =
379
379
foreground_delayed_tasks_.Pop ()) {
380
380
did_work = true ;
381
- uint64_t delay_millis =
382
- static_cast < uint64_t >(delayed-> timeout + 0.5 ) * 1000 ;
381
+ uint64_t delay_millis = llround (delayed-> timeout * 1000 );
382
+
383
383
delayed->timer .data = static_cast <void *>(delayed.get ());
384
384
uv_timer_init (loop_, &delayed->timer );
385
385
// Timers may not guarantee queue ordering of events with the same delay if
You can’t perform that action at this time.
0 commit comments