QEventDispatcher/WASM: fix a lambda name

It's returning milliseconds not nanoseconds.

Change-Id: I7dbc3f4043694b6ddf87c6ad9e4d20d3a9af0fd1
Reviewed-by: Morten Johan Sørvig <morten.sorvig@qt.io>
Reviewed-by: Marc Mutz <marc.mutz@qt.io>
Reviewed-by: Mikołaj Boc <Mikolaj.Boc@qt.io>
This commit is contained in:
Ahmad Samir 2023-04-29 00:06:33 +03:00
parent 30b9c3a135
commit c4ce22ef24

View File

@ -507,13 +507,13 @@ void QEventDispatcherWasm::updateNativeTimer()
// access to m_timerInfo), and then call native API to set the new
// wakeup time on the main thread.
auto timespecToNanosec = [](timespec ts) -> uint64_t {
auto timespecToMsec = [](timespec ts) -> uint64_t {
return ts.tv_sec * 1000 + ts.tv_nsec / (1000 * 1000);
};
timespec toWait;
bool hasTimer = m_timerInfo->timerWait(toWait);
uint64_t currentTime = timespecToNanosec(m_timerInfo->currentTime);
uint64_t toWaitDuration = timespecToNanosec(toWait);
uint64_t currentTime = timespecToMsec(m_timerInfo->currentTime);
uint64_t toWaitDuration = timespecToMsec(toWait);
uint64_t newTargetTime = currentTime + toWaitDuration;
auto maintainNativeTimer = [this, hasTimer, toWaitDuration, newTargetTime]() {