summaryrefslogtreecommitdiff
path: root/src/vm/dbginterface.h
diff options
context:
space:
mode:
authorKoundinya Veluri <kouvel@users.noreply.github.com>2019-05-08 19:16:16 -0700
committerGitHub <noreply@github.com>2019-05-08 19:16:16 -0700
commit93ec324ee831cd4db087ae985c5b3a814ba8abb3 (patch)
tree350a6362ac2548c390d1294c3388150f7626fa28 /src/vm/dbginterface.h
parent54affc4d950184a11f7815eaa418cba5fe0a9a36 (diff)
downloadcoreclr-93ec324ee831cd4db087ae985c5b3a814ba8abb3.tar.gz
coreclr-93ec324ee831cd4db087ae985c5b3a814ba8abb3.tar.bz2
coreclr-93ec324ee831cd4db087ae985c5b3a814ba8abb3.zip
Fix ETL event rejit IDs and sending of the IL to native map event when code versioning is in use (#24422)
Fix ETL event rejit IDs and sending of the IL to native map event when code versioning is in use Fixes https://github.com/dotnet/coreclr/issues/22904 Fixes https://github.com/dotnet/coreclr/issues/22908 - Method events now always send the native code ID for the rejit ID, and the IL to native map event continues to send the IL code ID - Took code versioning into account when sending rundown events for a method including the IL to native map
Diffstat (limited to 'src/vm/dbginterface.h')
-rw-r--r--src/vm/dbginterface.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/vm/dbginterface.h b/src/vm/dbginterface.h
index 13231c0f5f..ebf85e397a 100644
--- a/src/vm/dbginterface.h
+++ b/src/vm/dbginterface.h
@@ -286,7 +286,7 @@ public:
virtual HRESULT GetILToNativeMappingIntoArrays(
MethodDesc * pMethodDesc,
- PCODE pCode,
+ PCODE pNativeCodeStartAddress,
USHORT cMapMax,
USHORT * pcMap,
UINT ** prguiILOffset,