summaryrefslogtreecommitdiff
path: root/src/inc
diff options
context:
space:
mode:
authorBrian Robbins <brianrob@microsoft.com>2018-01-25 20:29:23 -0800
committerGitHub <noreply@github.com>2018-01-25 20:29:23 -0800
commita118b0571d8ae8bd34c275d02294fa19251345b6 (patch)
tree505de85259c0263f556d7813fd388abf39eaf2c0 /src/inc
parent5c5695fb05c62f42b969cc33119399e6c8fcf04e (diff)
downloadcoreclr-a118b0571d8ae8bd34c275d02294fa19251345b6.tar.gz
coreclr-a118b0571d8ae8bd34c275d02294fa19251345b6.tar.bz2
coreclr-a118b0571d8ae8bd34c275d02294fa19251345b6.zip
Create the concept of EventPipeSession and refactor EventPipe to use it. Also expose COMPlus configuration variables to support session configuration and output file path. (#16018)
Diffstat (limited to 'src/inc')
-rw-r--r--src/inc/clrconfigvalues.h10
1 files changed, 6 insertions, 4 deletions
diff --git a/src/inc/clrconfigvalues.h b/src/inc/clrconfigvalues.h
index 95179d8ed2..afb67986ff 100644
--- a/src/inc/clrconfigvalues.h
+++ b/src/inc/clrconfigvalues.h
@@ -728,10 +728,12 @@ RETAIL_CONFIG_DWORD_INFO(INTERNAL_EnableRCWCleanupOnSTAShutdown, W("EnableRCWCle
RETAIL_CONFIG_STRING_INFO(INTERNAL_LocalWinMDPath, W("LocalWinMDPath"), "Additional path to probe for WinMD files in if a WinRT type is not resolved using the standard paths.")
RETAIL_CONFIG_DWORD_INFO(EXTERNAL_AllowDComReflection, W("AllowDComReflection"), 0, "Allows out of process DCOM clients to marshal blocked reflection types.")
-///
-/// Performance Tracing
-///
-RETAIL_CONFIG_DWORD_INFO(INTERNAL_PerformanceTracing, W("PerformanceTracing"), 0, "Enable/disable performance tracing. Non-zero values enable tracing.")
+//
+// EventPipe
+//
+RETAIL_CONFIG_DWORD_INFO(INTERNAL_EnableEventPipe, W("EnableEventPipe"), 0, "Enable/disable event pipe. Non-zero values enable tracing.")
+RETAIL_CONFIG_STRING_INFO(INTERNAL_EventPipeOutputFile, W("EventPipeOutputFile"), "The full path including file name for the trace file that will be written when COMPlus_EnableEventPipe&=1")
+RETAIL_CONFIG_STRING_INFO(INTERNAL_EventPipeConfig, W("EventPipeConfig"), "Configuration for EventPipe.")
#ifdef FEATURE_GDBJIT
///