We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2079fef commit 447b1e8Copy full SHA for 447b1e8
deps/v8/include/v8.h
@@ -9490,6 +9490,7 @@ class V8_EXPORT Isolate {
9490
9491
internal::Address* GetDataFromSnapshotOnce(size_t index);
9492
void ReportExternalAllocationLimitReached();
9493
+ void CheckMemoryPressure();
9494
};
9495
9496
class V8_EXPORT StartupData {
deps/v8/src/api/api.cc
@@ -7987,6 +7987,9 @@ void Isolate::ReportExternalAllocationLimitReached() {
7987
heap->ReportExternalMemoryPressure();
7988
}
7989
7990
+// Node v14.x ABI compat dummy.
7991
+void Isolate::CheckMemoryPressure() {}
7992
+
7993
HeapProfiler* Isolate::GetHeapProfiler() {
7994
i::HeapProfiler* heap_profiler =
7995
reinterpret_cast<i::Isolate*>(this)->heap_profiler();
0 commit comments