blob: 3b20060392ddf3b16107035ece21b5f9432f499d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
// 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.
#include "include/cppgc/platform.h"
#include "src/base/platform/platform.h"
#include "src/heap/cppgc/gc-info-table.h"
namespace cppgc {
namespace internal {
static PageAllocator* g_page_allocator;
} // namespace internal
void InitializePlatform(PageAllocator* page_allocator) {
internal::g_page_allocator = page_allocator;
internal::GlobalGCInfoTable::Create(page_allocator);
}
void ShutdownPlatform() { internal::g_page_allocator = nullptr; }
namespace internal {
void Abort() { v8::base::OS::Abort(); }
} // namespace internal
} // namespace cppgc
|