test262/test/built-ins/Atomics/wait/waiterlist-block-indexedpos...

61 lines
1.3 KiB
JavaScript
Raw Normal View History

// 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(`
2018-05-19 02:52:31 +02:00
$262.agent.receiveBroadcast(function(sab) {
const i32a = new Int32Array(sab);
2018-05-19 02:52:31 +02:00
// Wait on index 0
Atomics.wait(i32a, 0, 0, 200);
$262.agent.report(0);
$262.agent.leaving();
});
`);
$262.agent.start(`
2018-05-19 02:52:31 +02:00
$262.agent.receiveBroadcast(function(sab) {
const i32a = new Int32Array(sab);
2018-05-19 02:52:31 +02:00
// Wait on index 2
Atomics.wait(i32a, 2, 0, 200);
$262.agent.report(2);
2018-05-19 02:52:31 +02:00
$262.agent.leaving();
});
`);
const i32a = new Int32Array(
new SharedArrayBuffer(4 * Int32Array.BYTES_PER_ELEMENT)
);
$262.agent.broadcast(i32a.buffer);
$262.agent.sleep(10);
// Wake index 2
Atomics.wake(i32a, 2, 1);
2018-05-19 02:52:31 +02:00
assert.sameValue(getReport(), '2');
2018-05-19 02:52:31 +02:00
// Wake index 0
Atomics.wake(i32a, 0, 1);
2018-05-19 02:52:31 +02:00
assert.sameValue(getReport(), '0');