File tree Expand file tree Collapse file tree 1 file changed +2
-3
lines changed Expand file tree Collapse file tree 1 file changed +2
-3
lines changed Original file line number Diff line number Diff line change @@ -8677,7 +8677,6 @@ DECLARE_API(ThreadPool)
8677
8677
do // while (false)
8678
8678
{
8679
8679
UINT64 ui64Value = 0;
8680
- UINT32 ui32Value = 0;
8681
8680
8682
8681
// Determine if the portable thread pool is enabled
8683
8682
if (FAILED(
@@ -8774,12 +8773,12 @@ DECLARE_API(ThreadPool)
8774
8773
accumulatedOffset += offset;
8775
8774
8776
8775
offset = GetValueFieldOffset(vCountsField.MTOfType, W("_data"));
8777
- if (offset < 0 || FAILED(MOVE(ui32Value , cdaTpInstance + accumulatedOffset + offset)))
8776
+ if (offset < 0 || FAILED(MOVE(ui64Value , cdaTpInstance + accumulatedOffset + offset)))
8778
8777
{
8779
8778
ExtOut(" %s\n", "Failed to read PortableThreadPool._separated.counts._data");
8780
8779
break;
8781
8780
}
8782
- UINT32 data = ui32Value ;
8781
+ UINT64 data = ui64Value ;
8783
8782
8784
8783
const UINT8 NumProcessingWorkShift = 0;
8785
8784
const UINT8 NumExistingThreadsShift = 16;
You can’t perform that action at this time.
0 commit comments