diff --git a/src/inc/eventtracebase.h b/src/inc/eventtracebase.h index c46cb8abab40..9437e605e4ec 100644 --- a/src/inc/eventtracebase.h +++ b/src/inc/eventtracebase.h @@ -611,7 +611,7 @@ namespace ETW #else // FEATURE_EVENT_TRACE public: static VOID MethodJitting(MethodDesc *pMethodDesc, SString *namespaceOrClassName=NULL, SString *methodName=NULL, SString *methodSignature=NULL) {}; - static VOID MethodJitted(MethodDesc *pMethodDesc, SString *namespaceOrClassName=NULL, SString *methodName=NULL, SString *methodSignature=NULL, SIZE_T pCode = 0, ReJITID rejitID = 0) {}; + static VOID MethodJitted(MethodDesc *pMethodDesc, SString *namespaceOrClassName=NULL, SString *methodName=NULL, SString *methodSignature=NULL, SIZE_T pCode = 0, ReJITID rejitID = 0, BOOL bProfilerRejectedPrecompiledCode = FALSE, BOOL bReadyToRunRejectedPrecompiledCode = FALSE) {}; static VOID StubInitialized(ULONGLONG ullHelperStartAddress, LPCWSTR pHelperName) {}; static VOID StubsInitialized(PVOID *pHelperStartAddresss, PVOID *pHelperNames, LONG ulNoOfHelpers) {}; static VOID MethodRestored(MethodDesc * pMethodDesc) {}; diff --git a/src/vm/corhost.cpp b/src/vm/corhost.cpp index 2b67f19f2b11..810c45ffd7a1 100644 --- a/src/vm/corhost.cpp +++ b/src/vm/corhost.cpp @@ -43,7 +43,9 @@ #endif // !FEATURE_PAL #include "stringarraylist.h" +#ifdef FEATURE_PERFTRACING #include "eventpipe.h" +#endif // FEATURE_PERFTRACING #ifdef FEATURE_COMINTEROP #include "winrttypenameconverter.h" @@ -370,7 +372,9 @@ void SetCommandLineArgs(LPCWSTR pwzAssemblyPath, int argc, LPCWSTR* argv) CONTRACTL_END; // Send the command line to EventPipe. +#ifdef FEATURE_PERFTRACING EventPipe::SaveCommandLine(pwzAssemblyPath, argc, argv); +#endif // FEATURE_PERFTRACING // Send the command line to System.Environment. struct _gc