Skip to content

Commit

Permalink
[cdac] Fix ThreadStoreData finalizer and GC thread (#106435)
Browse files Browse the repository at this point in the history
  • Loading branch information
elinor-fung authored Aug 15, 2024
1 parent a044ace commit 87ce5eb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/native/managed/cdacreader/src/Contracts/Thread.cs
Original file line number Diff line number Diff line change
Expand Up @@ -88,8 +88,8 @@ ThreadStoreData IThread.GetThreadStoreData()
return new ThreadStoreData(
threadStore.ThreadCount,
GetThreadFromLink(threadStore.FirstThreadLink),
_target.ReadGlobalPointer(Constants.Globals.FinalizerThread),
_target.ReadGlobalPointer(Constants.Globals.GCThread));
_target.ReadPointer(_target.ReadGlobalPointer(Constants.Globals.FinalizerThread)),
_target.ReadPointer(_target.ReadGlobalPointer(Constants.Globals.GCThread)));
}

ThreadStoreCounts IThread.GetThreadCounts()
Expand Down

0 comments on commit 87ce5eb

Please sign in to comment.