checkpoint in new debug info layer: 16-byte key (set up to use GUIDs or otherwise unique keys at the base), better control over oversubscribing cores for conversion, better prioritization of conversions

This commit is contained in:
Ryan Fleury
2025-09-29 14:12:33 -07:00
parent 8bf0a3de5b
commit 46527c8465
10 changed files with 753 additions and 24 deletions
+2 -2
View File
@@ -114,7 +114,7 @@ for(Test *test = test_##name_identifier; test != 0; test = 0)
}
for(OS_HandleNode *n = processes.first; n != 0; n = n->next)
{
os_process_join(n->v, max_U64);
os_process_join(n->v, max_U64, 0);
}
}
@@ -130,7 +130,7 @@ for(Test *test = test_##name_identifier; test != 0; test = 0)
}
for(OS_HandleNode *n = processes.first; n != 0; n = n->next)
{
os_process_join(n->v, max_U64);
os_process_join(n->v, max_U64, 0);
}
}