Skip to content

Commit

Permalink
Port EventPipe CoreCLR changes to Mono.
Browse files Browse the repository at this point in the history
Port changes done in the following CoreCLR PR's affecting corresponding Mono runtime EventPipe library sources:

dotnet/runtime#36720
dotnet/runtime#37002
dotnet/runtime#38967
dotnet/runtime#40191
dotnet/runtime#40332
dotnet/runtime#40499

EventPipe native code changes track by dotnet/runtime#36820.
  • Loading branch information
lateralusX committed Aug 21, 2020
1 parent f564c1d commit 4713e0b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion mono/metadata/icall-eventpipe.c
Original file line number Diff line number Diff line change
Expand Up @@ -320,7 +320,7 @@ ves_icall_System_Diagnostics_Tracing_EventPipeInternal_Enable (
(EventPipeSerializationFormat)format,
true,
NULL,
true);
NULL);
ep_start_streaming (session_id);

if (config_providers) {
Expand Down
1 change: 1 addition & 0 deletions mono/mini/mini-runtime.c
Original file line number Diff line number Diff line change
Expand Up @@ -4555,6 +4555,7 @@ mini_init (const char *filename, const char *runtime_version)

#if defined(ENABLE_PERFTRACING) && !defined(DISABLE_EVENTPIPE)
ep_init ();
ep_finish_init ();
#endif

if (mono_aot_only) {
Expand Down

0 comments on commit 4713e0b

Please sign in to comment.