// Copyright 2015 the V8 project authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #include "src/common/globals.h" #include "src/execution/futex-emulation.h" #include "src/numbers/conversions-inl.h" #include "src/objects/js-array-buffer-inl.h" // Implement Futex API for SharedArrayBuffers as defined in the // SharedArrayBuffer draft spec, found here: // https://github.com/tc39/ecmascript_sharedmem namespace v8 { namespace internal { RUNTIME_FUNCTION(Runtime_AtomicsNumWaitersForTesting) { … } RUNTIME_FUNCTION(Runtime_AtomicsNumUnresolvedAsyncPromisesForTesting) { … } RUNTIME_FUNCTION(Runtime_SetAllowAtomicsWait) { … } } // namespace internal } // namespace v8