summaryrefslogtreecommitdiff
path: root/src/vm/eventpipebuffer.h
diff options
context:
space:
mode:
authorBrian Robbins <brianrob@microsoft.com>2018-01-29 16:57:01 -0800
committerGitHub <noreply@github.com>2018-01-29 16:57:01 -0800
commitad7c1e85fa95a92d5cc58b93b6ca9e2b77ec86b6 (patch)
treee762d6280e29cfc31b41904cc7ac7aeb075aff3a /src/vm/eventpipebuffer.h
parentf83908c15be840101772c68d87eb3d41ab2faf6f (diff)
downloadcoreclr-ad7c1e85fa95a92d5cc58b93b6ca9e2b77ec86b6.tar.gz
coreclr-ad7c1e85fa95a92d5cc58b93b6ca9e2b77ec86b6.tar.bz2
coreclr-ad7c1e85fa95a92d5cc58b93b6ca9e2b77ec86b6.zip
EventPipe: Don't Generate and Emit Stacks on Rundown (#16083)
Diffstat (limited to 'src/vm/eventpipebuffer.h')
-rw-r--r--src/vm/eventpipebuffer.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/vm/eventpipebuffer.h b/src/vm/eventpipebuffer.h
index c96ad26609..7d6287d93d 100644
--- a/src/vm/eventpipebuffer.h
+++ b/src/vm/eventpipebuffer.h
@@ -10,6 +10,7 @@
#include "eventpipe.h"
#include "eventpipeevent.h"
#include "eventpipeeventinstance.h"
+#include "eventpipesession.h"
class EventPipeBuffer
{
@@ -82,7 +83,7 @@ public:
// Returns:
// - true: The write succeeded.
// - false: The write failed. In this case, the buffer should be considered full.
- bool WriteEvent(Thread *pThread, EventPipeEvent &event, EventPipeEventPayload &payload, LPCGUID pActivityId, LPCGUID pRelatedActivityId, StackContents *pStack = NULL);
+ bool WriteEvent(Thread *pThread, EventPipeSession &session, EventPipeEvent &event, EventPipeEventPayload &payload, LPCGUID pActivityId, LPCGUID pRelatedActivityId, StackContents *pStack = NULL);
// Get the timestamp of the most recent event in the buffer.
LARGE_INTEGER GetMostRecentTimeStamp() const;