General: Setup yuzu threads' microprofile, naming and registry.

This commit is contained in:
Fernando Sahmkow 2020-02-25 11:12:46 -04:00
parent a5c58a25ef
commit dc58058203
7 changed files with 25 additions and 9 deletions

View file

@ -2,6 +2,7 @@
// Licensed under GPLv2 or any later version
// Refer to the license.txt file included.
#include <chrono>
#include <iostream>
#include <memory>
#include <string>
@ -256,8 +257,9 @@ int main(int argc, char** argv) {
system.Renderer().Rasterizer().LoadDiskResources();
system.Run();
while (!finished)
;
while (!finished) {
std::this_thread::sleep_for(std::chrono::milliseconds(1));
}
system.Pause();
detached_tasks.WaitForAllTasks();