Skip to content

Commit

Permalink
Change mcs -dump to show the full function name for each MC (dotnet…
Browse files Browse the repository at this point in the history
  • Loading branch information
BruceForstall authored Dec 6, 2019
1 parent f10276e commit dba0ad9
Showing 1 changed file with 9 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -478,6 +478,15 @@ void MethodContext::dumpToConsole(int mcNumber)
{
printf(" method context #%d", mcNumber);
}

// Dump method name, etc., to output.
char bufferIdentityInfo[METHOD_IDENTITY_INFO_SIZE];
int cbLen = dumpMethodIdentityInfoToBuffer(bufferIdentityInfo, METHOD_IDENTITY_INFO_SIZE);
if (cbLen >= 0)
{
printf(" %s", bufferIdentityInfo);
}

printf("\n");

#define LWM(map, key, value) dumpLWM(this, map)
Expand Down

0 comments on commit dba0ad9

Please sign in to comment.