summaryrefslogtreecommitdiff
path: root/deps/v8/src/execution/isolate.h
diff options
context:
space:
mode:
Diffstat (limited to 'deps/v8/src/execution/isolate.h')
-rw-r--r--deps/v8/src/execution/isolate.h10
1 files changed, 10 insertions, 0 deletions
diff --git a/deps/v8/src/execution/isolate.h b/deps/v8/src/execution/isolate.h
index 20aea6066c..ef16dfa514 100644
--- a/deps/v8/src/execution/isolate.h
+++ b/deps/v8/src/execution/isolate.h
@@ -1347,6 +1347,15 @@ class Isolate final : private HiddenFactory {
return array_buffer_allocator_;
}
+ void set_array_buffer_allocator_shared(
+ std::shared_ptr<v8::ArrayBuffer::Allocator> allocator) {
+ array_buffer_allocator_shared_ = std::move(allocator);
+ }
+ std::shared_ptr<v8::ArrayBuffer::Allocator> array_buffer_allocator_shared()
+ const {
+ return array_buffer_allocator_shared_;
+ }
+
FutexWaitListNode* futex_wait_list_node() { return &futex_wait_list_node_; }
CancelableTaskManager* cancelable_task_manager() {
@@ -1758,6 +1767,7 @@ class Isolate final : private HiddenFactory {
uint32_t embedded_blob_size_ = 0;
v8::ArrayBuffer::Allocator* array_buffer_allocator_ = nullptr;
+ std::shared_ptr<v8::ArrayBuffer::Allocator> array_buffer_allocator_shared_;
FutexWaitListNode futex_wait_list_node_;