Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1673)

Unified Diff: include/v8.h

Issue 2233683002: Add kGCCallbackFlagCollectAllExternalMemory for external memory limit triggered gc (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: added cast Created 4 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | src/heap/heap.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: include/v8.h
diff --git a/include/v8.h b/include/v8.h
index 35822e53d8fec12ee4c0c0ec9fe5a00534e59666..4e1f1a2d68c1a33a4f5743a162a82782f4740b35 100644
--- a/include/v8.h
+++ b/include/v8.h
@@ -5246,6 +5246,7 @@ enum GCCallbackFlags {
kGCCallbackFlagForced = 1 << 2,
kGCCallbackFlagSynchronousPhantomCallbackProcessing = 1 << 3,
kGCCallbackFlagCollectAllAvailableGarbage = 1 << 4,
+ kGCCallbackFlagCollectAllExternalMemory = 1 << 5,
};
typedef void (*GCCallback)(GCType type, GCCallbackFlags flags);
« no previous file with comments | « no previous file | src/heap/heap.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698