summaryrefslogtreecommitdiff
path: root/deps/v8/src/heap/concurrent-marking.h
diff options
context:
space:
mode:
Diffstat (limited to 'deps/v8/src/heap/concurrent-marking.h')
-rw-r--r--deps/v8/src/heap/concurrent-marking.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/deps/v8/src/heap/concurrent-marking.h b/deps/v8/src/heap/concurrent-marking.h
index be2fc03d46..c08a9c47b0 100644
--- a/deps/v8/src/heap/concurrent-marking.h
+++ b/deps/v8/src/heap/concurrent-marking.h
@@ -5,6 +5,8 @@
#ifndef V8_HEAP_CONCURRENT_MARKING_H_
#define V8_HEAP_CONCURRENT_MARKING_H_
+#include <memory>
+
#include "include/v8-platform.h"
#include "src/base/atomic-utils.h"
#include "src/base/platform/condition-variable.h"
@@ -86,8 +88,6 @@ class V8_EXPORT_PRIVATE ConcurrentMarking {
// scavenge and is going to be re-used.
void ClearMemoryChunkData(MemoryChunk* chunk);
- int TaskCount() { return task_count_; }
-
// Checks if all threads are stopped.
bool IsStopped();
@@ -124,7 +124,7 @@ class V8_EXPORT_PRIVATE ConcurrentMarking {
int pending_task_count_ = 0;
bool is_pending_[kMaxTasks + 1] = {};
CancelableTaskManager::Id cancelable_id_[kMaxTasks + 1] = {};
- int task_count_ = 0;
+ int total_task_count_ = 0;
};
} // namespace internal