Skip to content

Commit

Permalink
Fixes GCToOSInterface::GetCurrentProcessId (#97429)
Browse files Browse the repository at this point in the history
  • Loading branch information
cshung committed Jan 24, 2024
1 parent d523506 commit 2be7371
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/coreclr/gc/windows/gcenv.windows.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -559,7 +559,7 @@ uint64_t GCToOSInterface::GetCurrentThreadIdForLogging()
// Get id of the process
uint32_t GCToOSInterface::GetCurrentProcessId()
{
return ::GetCurrentThreadId();
return ::GetCurrentProcessId();
}

// Set ideal processor for the current thread
Expand Down

0 comments on commit 2be7371

Please sign in to comment.