summaryrefslogtreecommitdiff
path: root/src/vm/eventpipesession.cpp
diff options
context:
space:
mode:
authorSung Yoon Whang <suwhang@microsoft.com>2019-06-20 16:33:51 -0700
committerGitHub <noreply@github.com>2019-06-20 16:33:51 -0700
commit9bd2787a9dd2aa4d2b7d4f72afebc3dbe896e896 (patch)
tree712b8829d3aa9d9d9ac936c8f4b914503bdcdae7 /src/vm/eventpipesession.cpp
parent05a557349f6c60f014f708282762168a8ba093e0 (diff)
downloadcoreclr-9bd2787a9dd2aa4d2b7d4f72afebc3dbe896e896.tar.gz
coreclr-9bd2787a9dd2aa4d2b7d4f72afebc3dbe896e896.tar.bz2
coreclr-9bd2787a9dd2aa4d2b7d4f72afebc3dbe896e896.zip
Fix eventpipe filtering (#25221)
* Add DOTNET_TRACE_CONTEXT and change macros to use DOTNET_TRACE_CONTEXT instead of MCGEN_TRACE_CONTEXT * Fixing macro definitions * eventing codegen scripts now generates EventPipe trace contexts * Fix macros to use the EVENTPIPE_TRACE_Context * Fix linux build * Fix windows build * Update Eventpipe provider context at EtwCallbackComon * break in switch * Update rundown provider context manually * PR feedback * Eventpipe->EventPipe * cleanup in codegen script
Diffstat (limited to 'src/vm/eventpipesession.cpp')
-rw-r--r--src/vm/eventpipesession.cpp5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/vm/eventpipesession.cpp b/src/vm/eventpipesession.cpp
index b91d9b1ee2..cb0140763c 100644
--- a/src/vm/eventpipesession.cpp
+++ b/src/vm/eventpipesession.cpp
@@ -429,6 +429,11 @@ void EventPipeSession::EnableRundown()
};
const uint32_t RundownProvidersSize = sizeof(RundownProviders) / sizeof(EventPipeProviderConfiguration);
+ // update the provider context here since the callback doesn't happen till we actually try to do rundown.
+ MICROSOFT_WINDOWS_DOTNETRUNTIME_RUNDOWN_PROVIDER_DOTNET_Context.EventPipeProvider.Level = VerboseLoggingLevel;
+ MICROSOFT_WINDOWS_DOTNETRUNTIME_RUNDOWN_PROVIDER_DOTNET_Context.EventPipeProvider.EnabledKeywordsBitmask = Keywords;
+ MICROSOFT_WINDOWS_DOTNETRUNTIME_RUNDOWN_PROVIDER_DOTNET_Context.EventPipeProvider.IsEnabled = true;
+
// Update provider list with rundown configuration.
for (uint32_t i = 0; i < RundownProvidersSize; ++i)
{