summaryrefslogtreecommitdiff
path: root/src/wasm2js.h
diff options
context:
space:
mode:
authorAlon Zakai <azakai@google.com>2021-12-14 07:28:19 -0800
committerGitHub <noreply@github.com>2021-12-14 07:28:19 -0800
commit0797d8383e6250ffff48cd98afd9a45b70ab2771 (patch)
tree966548d9f634897fd385e2333fa1fb9f07645e80 /src/wasm2js.h
parent984e752564e593728d2710f02a269567088c9473 (diff)
downloadbinaryen-0797d8383e6250ffff48cd98afd9a45b70ab2771.tar.gz
binaryen-0797d8383e6250ffff48cd98afd9a45b70ab2771.tar.bz2
binaryen-0797d8383e6250ffff48cd98afd9a45b70ab2771.zip
Allow fractional timeouts in wasm2js Atomics.wait. Followup to #4385 (#4387)
Diffstat (limited to 'src/wasm2js.h')
-rw-r--r--src/wasm2js.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/wasm2js.h b/src/wasm2js.h
index 615e47268..43f4d520f 100644
--- a/src/wasm2js.h
+++ b/src/wasm2js.h
@@ -2860,7 +2860,7 @@ void Wasm2JSGlue::emitSpecialSupport() {
if (timeoutHigh >= 0) {
// Convert from nanoseconds to milliseconds
// Taken from convertI32PairToI53 in emscripten's library_int53.js
- timeout = ((timeoutLow / 1e6) >>> 0) + timeoutHigh * (4294967296 / 1e6);
+ timeout = ((timeoutLow >>> 0) / 1e6) + timeoutHigh * (4294967296 / 1e6);
}
var view = new Int32Array(bufferView.buffer); // TODO cache
var result = Atomics.wait(view, ptr >> 2, expected, timeout);