diff options
author | bunnei <ericbunnie@gmail.com> | 2014-06-14 18:13:16 +0200 |
---|---|---|
committer | bunnei <ericbunnie@gmail.com> | 2014-06-14 18:13:16 +0200 |
commit | 004df767953a949817da89bddcd5d1379240f769 (patch) | |
tree | b2d54928dcbf3cb4dde0cd5d3277afe7999b7bd9 /src/core/arm/arm_interface.h | |
parent | GPU debugger: Const correctness and build fix. (diff) | |
parent | Kernel: Removed unnecessary "#pragma once". (diff) | |
download | yuzu-004df767953a949817da89bddcd5d1379240f769.tar yuzu-004df767953a949817da89bddcd5d1379240f769.tar.gz yuzu-004df767953a949817da89bddcd5d1379240f769.tar.bz2 yuzu-004df767953a949817da89bddcd5d1379240f769.tar.lz yuzu-004df767953a949817da89bddcd5d1379240f769.tar.xz yuzu-004df767953a949817da89bddcd5d1379240f769.tar.zst yuzu-004df767953a949817da89bddcd5d1379240f769.zip |
Diffstat (limited to 'src/core/arm/arm_interface.h')
-rw-r--r-- | src/core/arm/arm_interface.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/core/arm/arm_interface.h b/src/core/arm/arm_interface.h index 34a2eba1b..be677ae20 100644 --- a/src/core/arm/arm_interface.h +++ b/src/core/arm/arm_interface.h @@ -89,6 +89,9 @@ public: */ virtual void LoadContext(const ThreadContext& ctx) = 0; + /// Prepare core for thread reschedule (if needed to correctly handle state) + virtual void PrepareReschedule() = 0; + /// Getter for num_instructions u64 GetNumInstructions() { return num_instructions; |