diff options
author | Fernando S <fsahmkow27@gmail.com> | 2022-04-07 16:21:41 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-04-07 16:21:41 +0200 |
commit | 50192eb4adfa59703d13c7b77797a4eb092d9301 (patch) | |
tree | f1d4f9e5eb519185d343ec0f92f7e50da8bbe1dc /src/core/arm/arm_interface.h | |
parent | Merge pull request #8143 from merryhime/rdtsc (diff) | |
parent | arm_dynarmic: Use HaltReason for svc calls and reschedules (diff) | |
download | yuzu-50192eb4adfa59703d13c7b77797a4eb092d9301.tar yuzu-50192eb4adfa59703d13c7b77797a4eb092d9301.tar.gz yuzu-50192eb4adfa59703d13c7b77797a4eb092d9301.tar.bz2 yuzu-50192eb4adfa59703d13c7b77797a4eb092d9301.tar.lz yuzu-50192eb4adfa59703d13c7b77797a4eb092d9301.tar.xz yuzu-50192eb4adfa59703d13c7b77797a4eb092d9301.tar.zst yuzu-50192eb4adfa59703d13c7b77797a4eb092d9301.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 c60322442..dce2f4195 100644 --- a/src/core/arm/arm_interface.h +++ b/src/core/arm/arm_interface.h @@ -171,6 +171,9 @@ public: /// Prepare core for thread reschedule (if needed to correctly handle state) virtual void PrepareReschedule() = 0; + /// Signal an interrupt and ask the core to halt as soon as possible. + virtual void SignalInterrupt() = 0; + struct BacktraceEntry { std::string module; u64 address; |