File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -6186,7 +6186,7 @@ enum GCType {
61866186 * - kGCCallbackFlagCollectAllAvailableGarbage: The GC callback is called
61876187 * in a phase where V8 is trying to collect all available garbage
61886188 * (e.g., handling a low memory notification).
6189- * - kGCCallbackScheduleIdleCollectGarbage : The GC callback is called to
6189+ * - kGCCallbackScheduleIdleGarbageCollection : The GC callback is called to
61906190 * trigger an idle garbage collection.
61916191 */
61926192enum GCCallbackFlags {
@@ -6196,7 +6196,7 @@ enum GCCallbackFlags {
61966196 kGCCallbackFlagSynchronousPhantomCallbackProcessing = 1 << 3,
61976197 kGCCallbackFlagCollectAllAvailableGarbage = 1 << 4,
61986198 kGCCallbackFlagCollectAllExternalMemory = 1 << 5,
6199- kGCCallbackScheduleIdleCollectGarbage = 1 << 6,
6199+ kGCCallbackScheduleIdleGarbageCollection = 1 << 6,
62006200};
62016201
62026202typedef void (*GCCallback)(GCType type, GCCallbackFlags flags);
You can’t perform that action at this time.
0 commit comments