Server IP : 184.154.167.98 / Your IP : 3.17.156.154 Web Server : Apache System : Linux pink.dnsnetservice.com 4.18.0-553.22.1.lve.1.el8.x86_64 #1 SMP Tue Oct 8 15:52:54 UTC 2024 x86_64 User : puertode ( 1767) PHP Version : 8.2.26 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /opt/cpanel/ea-nodejs16/include/node/cppgc/ |
Upload File : |
// Copyright 2020 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. #ifndef INCLUDE_CPPGC_COMMON_H_ #define INCLUDE_CPPGC_COMMON_H_ // TODO(chromium:1056170): Remove dependency on v8. #include "v8config.h" // NOLINT(build/include_directory) namespace cppgc { /** * Indicator for the stack state of the embedder. */ enum class EmbedderStackState { /** * Stack may contain interesting heap pointers. */ kMayContainHeapPointers, /** * Stack does not contain any interesting heap pointers. */ kNoHeapPointers, }; } // namespace cppgc #endif // INCLUDE_CPPGC_COMMON_H_