diff options
Diffstat (limited to 'deps/v8/src/global-handles.h')
-rw-r--r-- | deps/v8/src/global-handles.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/deps/v8/src/global-handles.h b/deps/v8/src/global-handles.h index 153d4dac1..ddf5fe29c 100644 --- a/deps/v8/src/global-handles.h +++ b/deps/v8/src/global-handles.h @@ -143,6 +143,11 @@ class GlobalHandles { return number_of_global_object_weak_handles_; } + // Returns the current number of handles to global objects. + int NumberOfGlobalHandles() { + return number_of_global_handles_; + } + // Clear the weakness of a global handle. void ClearWeakness(Object** location); @@ -248,6 +253,9 @@ class GlobalHandles { // number_of_weak_handles_. int number_of_global_object_weak_handles_; + // Field always containing the number of handles to global objects. + int number_of_global_handles_; + // List of all allocated node blocks. NodeBlock* first_block_; |