Commit e7721130 authored by Martin Storsjö's avatar Martin Storsjö Committed by Alexandre Julliard

ntdll: Reduce fixme logging for large numbers of cores.

Once we've reached the condition for skipping a core, we will skip all other cores in the same range as well - don't print a fixme message for each of them. Signed-off-by: 's avatarMartin Storsjö <martin@martin.st>
parent 46c5c2d4
......@@ -931,11 +931,7 @@ static NTSTATUS create_logical_proc_info(void)
unsigned int phys_core = 0;
ULONG_PTR thread_mask = 0;
if (i > 8 * sizeof(ULONG_PTR))
{
FIXME("skipping logical processor %d\n", i);
continue;
}
if (i > 8 * sizeof(ULONG_PTR)) break;
snprintf(name, sizeof(name), core_info, i, "physical_package_id");
f = fopen(name, "r");
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment