/
githubmirror
/
node
Обзор
Документация
Войти
/
githubmirror
/
node
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
deps/v8/src/objects/js-atomics-synchronization.tq
18 строк
584 B
Michaël Zasso
deps: update V8 to 12.4.254.14
23 апр 2024, 00:25
23 апр 2024, 00:25
cfbf9e0
Код
Авторство
О чём код?
// Copyright 2022 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. @abstract extern class JSSynchronizationPrimitive extends AlwaysSharedSpaceJSObject { waiter_queue_head: ExternalPointer; state: uint32; } extern class JSAtomicsMutex extends JSSynchronizationPrimitive { owner_thread_id: int32; } extern class JSAtomicsCondition extends JSSynchronizationPrimitive { @if(TAGGED_SIZE_8_BYTES) optional_padding: uint32; @ifnot(TAGGED_SIZE_8_BYTES) optional_padding: void; }