| 471 | } |
| 472 | |
| 473 | void fx_Atomics_compareExchange(txMachine* the) |
| 474 | { |
| 475 | mxAtomicsDeclarations(0, 0, 1); |
| 476 | fxPushAtomicsValue(the, 2, dispatch->value.typedArray.dispatch->constructorID); |
| 477 | fxPushAtomicsValue(the, 3, dispatch->value.typedArray.dispatch->constructorID); |
| 478 | (*dispatch->value.typedArray.atomics->compareExchange)(the, host, offset, the->stack, 0); |
| 479 | mxPullSlot(mxResult); |
| 480 | mxPop(); |
| 481 | } |
| 482 | |
| 483 | void fx_Atomics_exchange(txMachine* the) |
| 484 | { |
nothing calls this directly
no test coverage detected