@@ -851,7 +851,7 @@ VOID ETW::GCLog::EndMovedReferences(size_t profilingContext, BOOL fAllowProfApiN
851851}
852852
853853/* **************************************************************************/
854- /* This implements the public runtime provider's GCHeapCollectKeyword . It
854+ /* This implements the public runtime provider's ManagedHeapCollectKeyword . It
855855 performs a full, gen-2, blocking GC. */
856856/* **************************************************************************/
857857VOID ETW::GCLog::ForceGC (LONGLONG l64ClientSequenceNumber)
@@ -4326,10 +4326,10 @@ void InitializeEventTracing()
43264326// that ultimately funnels them all into a common handler.
43274327
43284328#if defined(HOST_UNIX)
4329- // CLR_GCHEAPCOLLECT_KEYWORD is defined by the generated ETW manifest on Windows.
4329+ // CLR_MANAGEDHEAPCOLLECT_KEYWORD is defined by the generated ETW manifest on Windows.
43304330// On non-Windows, we need to make sure that this is defined. Given that we can't change
43314331// the value due to compatibility, we specify it here rather than generating defines based on the manifest.
4332- #define CLR_GCHEAPCOLLECT_KEYWORD 0x800000
4332+ #define CLR_MANAGEDHEAPCOLLECT_KEYWORD 0x800000
43334333#endif // defined(HOST_UNIX)
43344334
43354335// CallbackProviderIndex provides a quick identification of which provider triggered the
@@ -4417,10 +4417,10 @@ VOID EtwCallbackCommon(
44174417 GCHeapUtilities::RecordEventStateChange (bIsPublicTraceHandle, keywords, level);
44184418 }
44194419
4420- // Special check for the runtime provider's GCHeapCollectKeyword . Profilers
4420+ // Special check for the runtime provider's ManagedHeapCollectKeyword . Profilers
44214421 // flick this to force a full GC.
44224422 if (g_fEEStarted && !g_fEEShutDown && bIsPublicTraceHandle &&
4423- ((MatchAnyKeyword & CLR_GCHEAPCOLLECT_KEYWORD ) != 0 ))
4423+ ((MatchAnyKeyword & CLR_MANAGEDHEAPCOLLECT_KEYWORD ) != 0 ))
44244424 {
44254425 // Profilers may (optionally) specify extra data in the filter parameter
44264426 // to log with the GCStart event.
0 commit comments