diff options
| author | 2021-05-26 19:43:05 +0200 | |
|---|---|---|
| committer | 2021-05-26 19:48:24 +0200 | |
| commit | 993dbe49fc70f5b7e318db163af61a58dc84b79e (patch) | |
| tree | 7d1812d44df9e8a6c51c7e5b612201a9c1bc955d /src/core/arm/arm_interface.h | |
| parent | Merge pull request #6331 from lioncash/gesture (diff) | |
| download | yuzu-993dbe49fc70f5b7e318db163af61a58dc84b79e.tar.gz yuzu-993dbe49fc70f5b7e318db163af61a58dc84b79e.tar.xz yuzu-993dbe49fc70f5b7e318db163af61a58dc84b79e.zip | |
core/arm: Drop ChangeProcessorID.
This code was used to switch the CPU ID on thread switches.
However since "hle: kernel: multicore: Replace n-JITs impl. with 4 JITs.", the CPU ID is not a constant.
This has been dead code since this rewrite, and dropped in dynarmic as well. So there is no need to keep it.
Diffstat (limited to 'src/core/arm/arm_interface.h')
| -rw-r--r-- | src/core/arm/arm_interface.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/core/arm/arm_interface.h b/src/core/arm/arm_interface.h index 9a0151736..77094b48f 100644 --- a/src/core/arm/arm_interface.h +++ b/src/core/arm/arm_interface.h | |||
| @@ -159,8 +159,6 @@ public: | |||
| 159 | */ | 159 | */ |
| 160 | virtual void SetTPIDR_EL0(u64 value) = 0; | 160 | virtual void SetTPIDR_EL0(u64 value) = 0; |
| 161 | 161 | ||
| 162 | virtual void ChangeProcessorID(std::size_t new_core_id) = 0; | ||
| 163 | |||
| 164 | virtual void SaveContext(ThreadContext32& ctx) = 0; | 162 | virtual void SaveContext(ThreadContext32& ctx) = 0; |
| 165 | virtual void SaveContext(ThreadContext64& ctx) = 0; | 163 | virtual void SaveContext(ThreadContext64& ctx) = 0; |
| 166 | virtual void LoadContext(const ThreadContext32& ctx) = 0; | 164 | virtual void LoadContext(const ThreadContext32& ctx) = 0; |