Fix instruction execution counting

This commit is contained in:
momo5502
2024-10-26 10:06:02 +02:00
parent b6a8f9793e
commit 1021009296
5 changed files with 56 additions and 23 deletions

View File

@@ -35,7 +35,8 @@ bool test_threads()
++counter;
std::this_thread::yield();
++counter;
std::this_thread::sleep_for(std::chrono::milliseconds(100));
// Host scheduling/cpu performance can have impact on emulator scheduling
//std::this_thread::sleep_for(std::chrono::milliseconds(100));
++counter;
});
}