diff options
author | Fernando Sahmkow <fsahmkow27@gmail.com> | 2020-02-27 19:12:41 -0400 |
---|---|---|
committer | Fernando Sahmkow <fsahmkow27@gmail.com> | 2020-06-27 11:35:20 -0400 |
commit | 04e0f8776c26930d7dc8015e53914b11bf1929c1 (patch) | |
tree | 4a8288d6bf8655a2ec0595fdc6d41a3037c5fcad /src/core/cpu_manager.h | |
parent | bd36eaf15d88c3875aba7032fe5124fbb150bd5d (diff) |
General: Add better safety for JIT use.
Diffstat (limited to 'src/core/cpu_manager.h')
-rw-r--r-- | src/core/cpu_manager.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/core/cpu_manager.h b/src/core/cpu_manager.h index 8103ae857..e83ab20f9 100644 --- a/src/core/cpu_manager.h +++ b/src/core/cpu_manager.h @@ -42,10 +42,12 @@ public: private: static void GuestThreadFunction(void* cpu_manager); + static void GuestRewindFunction(void* cpu_manager); static void IdleThreadFunction(void* cpu_manager); static void SuspendThreadFunction(void* cpu_manager); void RunGuestThread(); + void RunGuestLoop(); void RunIdleThread(); void RunSuspendThread(); |