File tree Expand file tree Collapse file tree 3 files changed +8
-2
lines changed Expand file tree Collapse file tree 3 files changed +8
-2
lines changed Original file line number Diff line number Diff line change 35
35
36
36
# Reset this number to 0 on major V8 upgrades.
37
37
# Increment by one for each non-official patch applied to deps/v8.
38
- 'v8_embedder_string' : '-node.27 ' ,
38
+ 'v8_embedder_string' : '-node.28 ' ,
39
39
40
40
##### V8 defaults for Node.js #####
41
41
Original file line number Diff line number Diff line change @@ -7545,6 +7545,8 @@ class V8_EXPORT HeapStatistics {
7545
7545
size_t total_heap_size_executable () { return total_heap_size_executable_; }
7546
7546
size_t total_physical_size () { return total_physical_size_; }
7547
7547
size_t total_available_size () { return total_available_size_; }
7548
+ size_t total_global_handles_size () { return total_global_handles_size_; }
7549
+ size_t used_global_handles_size () { return used_global_handles_size_; }
7548
7550
size_t used_heap_size () { return used_heap_size_; }
7549
7551
size_t heap_size_limit () { return heap_size_limit_; }
7550
7552
size_t malloced_memory () { return malloced_memory_; }
@@ -7572,6 +7574,8 @@ class V8_EXPORT HeapStatistics {
7572
7574
bool does_zap_garbage_;
7573
7575
size_t number_of_native_contexts_;
7574
7576
size_t number_of_detached_contexts_;
7577
+ size_t total_global_handles_size_;
7578
+ size_t used_global_handles_size_;
7575
7579
7576
7580
friend class V8 ;
7577
7581
friend class Isolate ;
Original file line number Diff line number Diff line change @@ -5753,7 +5753,9 @@ HeapStatistics::HeapStatistics()
5753
5753
peak_malloced_memory_(0 ),
5754
5754
does_zap_garbage_(false ),
5755
5755
number_of_native_contexts_(0 ),
5756
- number_of_detached_contexts_(0 ) {}
5756
+ number_of_detached_contexts_(0 ),
5757
+ total_global_handles_size_(0 ),
5758
+ used_global_handles_size_(0 ) {}
5757
5759
5758
5760
HeapSpaceStatistics::HeapSpaceStatistics ()
5759
5761
: space_name_(nullptr ),
You can’t perform that action at this time.
0 commit comments