// Copyright (C) 2018 Rick Waldron. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-atomics.wait description: > Get the correct WaiterList info: | Atomics.wait( typedArray, index, value, timeout ) ... 11. Let WL be GetWaiterList(block, indexedPosition). ... GetWaiterList( block, i ) ... 4. Return the WaiterList that is referenced by the pair (block, i). includes: [atomicsHelper.js] features: [Atomics, SharedArrayBuffer, TypedArray] ---*/ $262.agent.start(` $262.agent.receiveBroadcast(function(sab) { const i32a = new Int32Array(sab); // Wait on index 0 $262.agent.report(Atomics.wait(i32a, 0, 0, Infinity)); $262.agent.leaving(); }); `); $262.agent.start(` $262.agent.receiveBroadcast(function(sab) { const i32a = new Int32Array(sab); // Wait on index 2 $262.agent.report(Atomics.wait(i32a, 2, 0, Infinity)); $262.agent.leaving(); }); `); const i32a = new Int32Array( new SharedArrayBuffer(Int32Array.BYTES_PER_ELEMENT * 4) ); $262.agent.broadcast(i32a.buffer); $262.agent.sleep(10); // Wake index 1, wakes nothing assert.sameValue(Atomics.wake(i32a, 1), 0, 'Atomics.wake(i32a, 1) returns 0'); // Wake index 3, wakes nothing assert.sameValue(Atomics.wake(i32a, 3), 0, 'Atomics.wake(i32a, 3) returns 0'); // Wake index 2, wakes 1 assert.sameValue(Atomics.wake(i32a, 2), 1, 'Atomics.wake(i32a, 2) returns 1'); assert.sameValue(getReport(), 'ok', 'getReport() returns "ok"'); // Wake index 0, wakes 1 assert.sameValue(Atomics.wake(i32a, 0), 1, 'Atomics.wake(i32a, 0) returns 1'); assert.sameValue(getReport(), 'ok', 'getReport() returns "ok"');