Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/corert.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorScott Mosier <smosier@microsoft.com>2015-11-05 01:51:04 +0300
committerScott Mosier <smosier@microsoft.com>2015-11-20 03:06:03 +0300
commitc03d823a11f54e734e340813e6cd1e543ca448ef (patch)
tree9253c3230e07568377a5744ffd8c0932774a3989 /src/Native/Runtime/EtwEvents.h
parent896131b2af7bc8f3f01e56e391e9c186726f5c6f (diff)
Changes required to integrate code back into ProjectN tree
Diffstat (limited to 'src/Native/Runtime/EtwEvents.h')
-rw-r--r--src/Native/Runtime/EtwEvents.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/Native/Runtime/EtwEvents.h b/src/Native/Runtime/EtwEvents.h
index 07a5ecaae..3894b4ef4 100644
--- a/src/Native/Runtime/EtwEvents.h
+++ b/src/Native/Runtime/EtwEvents.h
@@ -41,7 +41,7 @@ struct RH_ETW_CONTEXT
UInt32 EtwCallback(UInt32 IsEnabled, RH_ETW_CONTEXT * CallbackContext);
__declspec(noinline) __inline void __stdcall
-RhEtwControlCallback(GUID * SourceId, UInt32 IsEnabled, UInt8 Level, UInt64 MatchAnyKeyword, UInt64 MatchAllKeyword, EVENT_FILTER_DESCRIPTOR * FilterData, void * CallbackContext)
+RhEtwControlCallback(GUID * /*SourceId*/, UInt32 IsEnabled, UInt8 Level, UInt64 MatchAnyKeyword, UInt64 MatchAllKeyword, EVENT_FILTER_DESCRIPTOR * FilterData, void * CallbackContext)
{
RH_ETW_CONTEXT * Ctx = (RH_ETW_CONTEXT*)CallbackContext;
if (Ctx == NULL)
@@ -331,6 +331,9 @@ extern "C" __declspec(selectany) const EVENT_DESCRIPTOR GCTerminateConcurrentThr
extern "C" __declspec(selectany) const EVENT_DESCRIPTOR ModuleLoad_V2 = {0x98, 0x2, 0x10, 0x4, 0x21, 0xa, 0x8000000020000008};
extern "C" __declspec(selectany) const EVENT_DESCRIPTOR SetGCHandle = {0x1e, 0x0, 0x10, 0x4, 0x21, 0x1, 0x8000000000000002};
+// @TODO: ETW update required -- placeholder guid
+extern "C" __declspec(selectany) const EVENT_DESCRIPTOR PinPlugAtGCTime = { 0x00, 0x0, 0x00, 0x0, 0x00, 0x0, 0x0000000000000000 };
+
extern "C" __declspec(selectany) REGHANDLE Microsoft_Windows_Redhawk_GC_PublicHandle;
extern "C" __declspec(selectany) RH_ETW_CONTEXT MICROSOFT_WINDOWS_REDHAWK_GC_PUBLIC_PROVIDER_Context;