summaryrefslogtreecommitdiff
path: root/src/vm/eventpipeinternal.h
diff options
context:
space:
mode:
authorJosé Rivero <jorive@microsoft.com>2019-04-08 11:54:19 -0700
committerGitHub <noreply@github.com>2019-04-08 11:54:19 -0700
commit2ab76fe4fb75af98f470650c939f79c569c729a3 (patch)
tree0f1b36d0b1e2d09df1d7336dd8274e2eccba5a08 /src/vm/eventpipeinternal.h
parentd40a6ac7efe52dc589936fd815210f7290f3fb68 (diff)
downloadcoreclr-2ab76fe4fb75af98f470650c939f79c569c729a3.tar.gz
coreclr-2ab76fe4fb75af98f470650c939f79c569c729a3.tar.bz2
coreclr-2ab76fe4fb75af98f470650c939f79c569c729a3.zip
Remove the MultiFileSec option from EventPipe. (#23777)
This option was a pseudo mechanism to fake "streaming" events out-of-proc. The idea was to have EventPipe creating files every N seconds, with event data up to that point. Thus, external processes could read these files in an attempt to get "read-time" data. Now, we actually have streaming of event through IPC channels, so this option is not needed.
Diffstat (limited to 'src/vm/eventpipeinternal.h')
-rw-r--r--src/vm/eventpipeinternal.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/vm/eventpipeinternal.h b/src/vm/eventpipeinternal.h
index bbd4ad633b..e4252c743a 100644
--- a/src/vm/eventpipeinternal.h
+++ b/src/vm/eventpipeinternal.h
@@ -49,8 +49,7 @@ public:
UINT32 circularBufferSizeInMB,
INT64 profilerSamplingRateInNanoseconds,
EventPipeProviderConfiguration *pProviders,
- UINT32 numProviders,
- UINT64 multiFileTraceLengthInSeconds);
+ UINT32 numProviders);
//! TODO: Add a ListActiveSessions to get the live SessionID in order to Disable?