Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merging internal commits for release/6.0 #83404

Merged
Changes from 2 commits
Commits
Show all changes
25 commits
Select commit Hold shift + click to select a range
54bb24f
Merge in 'release/6.0' changes
dotnet-bot Feb 8, 2023
c2c7afa
Merge in 'release/6.0' changes
dotnet-bot Feb 8, 2023
d411de8
Merge in 'release/6.0' changes
dotnet-bot Feb 8, 2023
3961581
Merge in 'release/6.0' changes
dotnet-bot Feb 8, 2023
3859f81
Merge in 'release/6.0' changes
dotnet-bot Feb 8, 2023
75e3eac
Merge in 'release/6.0' changes
dotnet-bot Feb 8, 2023
3d2923d
Merge in 'release/6.0' changes
dotnet-bot Feb 8, 2023
6275102
Merge in 'release/6.0' changes
dotnet-bot Feb 8, 2023
7f24ff7
Merge in 'release/6.0' changes
dotnet-bot Feb 8, 2023
b100014
Merge in 'release/6.0' changes
dotnet-bot Feb 8, 2023
1b85704
Merge in 'release/6.0' changes
dotnet-bot Feb 9, 2023
8c4e317
Merge in 'release/6.0' changes
dotnet-bot Feb 9, 2023
ca4d7bb
Merge in 'release/6.0' changes
dotnet-bot Feb 9, 2023
47b46c3
Merge in 'release/6.0' changes
dotnet-bot Feb 10, 2023
e0c5bf0
Merge in 'release/6.0' changes
dotnet-bot Feb 10, 2023
d0004a3
Merged PR 28980: Fix TimeZone when reading invalid TZ files
tarekgh Feb 10, 2023
3a8c500
Merge in 'release/6.0' changes
dotnet-bot Feb 10, 2023
d4a7595
Merge in 'release/6.0' changes
dotnet-bot Feb 11, 2023
4ef7e67
Merge in 'release/6.0' changes
dotnet-bot Feb 13, 2023
5789ff7
Merge in 'release/6.0' changes
dotnet-bot Feb 13, 2023
9b4f0e3
Merge in 'release/6.0' changes
dotnet-bot Feb 14, 2023
0aa8845
Merge in 'release/6.0' changes
dotnet-bot Feb 14, 2023
22da7ee
Merge in 'release/6.0' changes
dotnet-bot Feb 15, 2023
5edef4b
Merge in 'release/6.0' changes
dotnet-bot Feb 16, 2023
adc4201
Merge commit '5edef4b20babd4c3ddac7460e536f86fd0f2d724' into internal…
vseanreesermsft Mar 14, 2023
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/coreclr/vm/eventpipeinternal.cpp
Original file line number Diff line number Diff line change
@@ -60,7 +60,7 @@ void QCALLTYPE EventPipeInternal::Disable(UINT64 sessionID)
END_QCALL;
}

bool QCALLTYPE EventPipeInternal::GetSessionInfo(UINT64 sessionID, EventPipeSessionInfo *pSessionInfo)
BOOL QCALLTYPE EventPipeInternal::GetSessionInfo(UINT64 sessionID, EventPipeSessionInfo *pSessionInfo)
{
QCALL_CONTRACT;

@@ -229,7 +229,7 @@ void QCALLTYPE EventPipeInternal::WriteEventData(
END_QCALL;
}

bool QCALLTYPE EventPipeInternal::GetNextEvent(UINT64 sessionID, EventPipeEventInstanceData *pInstance)
BOOL QCALLTYPE EventPipeInternal::GetNextEvent(UINT64 sessionID, EventPipeEventInstanceData *pInstance)
{
QCALL_CONTRACT;

4 changes: 2 additions & 2 deletions src/coreclr/vm/eventpipeinternal.h
Original file line number Diff line number Diff line change
@@ -55,7 +55,7 @@ class EventPipeInternal
//!
static void QCALLTYPE Disable(UINT64 sessionID);

static bool QCALLTYPE GetSessionInfo(UINT64 sessionID, EventPipeSessionInfo *pSessionInfo);
static BOOL QCALLTYPE GetSessionInfo(UINT64 sessionID, EventPipeSessionInfo *pSessionInfo);

static INT_PTR QCALLTYPE CreateProvider(
__in_z LPCWSTR providerName,
@@ -86,7 +86,7 @@ class EventPipeInternal
UINT32 eventDataCount,
LPCGUID pActivityId, LPCGUID pRelatedActivityId);

static bool QCALLTYPE GetNextEvent(
static BOOL QCALLTYPE GetNextEvent(
UINT64 sessionID,
EventPipeEventInstanceData *pInstance);