We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5787f53 commit 7bdb8dbCopy full SHA for 7bdb8db
deps/v8/include/v8-version.h
@@ -11,7 +11,7 @@
11
#define V8_MAJOR_VERSION 6
12
#define V8_MINOR_VERSION 1
13
#define V8_BUILD_NUMBER 534
14
-#define V8_PATCH_LEVEL 43
+#define V8_PATCH_LEVEL 44
15
16
// Use 1 for candidates and 0 otherwise.
17
// (Boolean macro values are not supported by all preprocessors.)
deps/v8/src/heap/heap.cc
@@ -1718,7 +1718,7 @@ void Heap::Scavenge() {
1718
1719
if (mark_compact_collector()->sweeper().sweeping_in_progress() &&
1720
memory_allocator_->unmapper()->NumberOfDelayedChunks() >
1721
- kMaxSemiSpaceSizeInKB / Page::kPageSize) {
+ static_cast<int>(new_space_->MaximumCapacity() / Page::kPageSize)) {
1722
mark_compact_collector()->EnsureSweepingCompleted();
1723
}
1724
0 commit comments