Skip to content

Commit

Permalink
Include GC in the default rundown keyword for eventpipe (#79671)
Browse files Browse the repository at this point in the history
  • Loading branch information
cshung authored Jan 5, 2023
1 parent b7aa791 commit fde8720
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/native/eventpipe/ep-session.c
Original file line number Diff line number Diff line change
Expand Up @@ -267,13 +267,14 @@ ep_session_enable_rundown (EventPipeSession *session)

//! This is CoreCLR specific keywords for native ETW events (ending up in event pipe).
//! The keywords below seems to correspond to:
//! GCKeyword (0x00000001)
//! LoaderKeyword (0x00000008)
//! JitKeyword (0x00000010)
//! NgenKeyword (0x00000020)
//! unused_keyword (0x00000100)
//! JittedMethodILToNativeMapKeyword (0x00020000)
//! ThreadTransferKeyword (0x80000000)
const uint64_t keywords = 0x80020138;
const uint64_t keywords = 0x80020139;
const EventPipeEventLevel verbose_logging_level = EP_EVENT_LEVEL_VERBOSE;

EventPipeProviderConfiguration rundown_providers [2];
Expand Down

0 comments on commit fde8720

Please sign in to comment.