This repository has been archived by the owner on Oct 10, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 57
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Normative: Permit atomic operations on BigInt64Arrays
Previously, it was left up for future integration details to allow BigInt64Array and BigUint64Array to use atomic operations. This patch spells out the details of how these should work. The semantics of Atomics.wait/wake are based on doing the wait/wake on the relevant index of the underlying memory. For example, a 64-bit wait would be woken up by a 32-bit wake at twice the index. Non-atomic writes to BigInt64Arrays can be torn, following the memory model for Float64Array. In some places in internal spec names, `Int64` is replaced by `BigInt64` for consistency. Addresses #78
Showing
1 changed file
with
225 additions
and
16 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters