diff options
| author | Markus Wick <markus@selfnet.de> | 2021-05-26 19:43:05 +0200 |
|---|---|---|
| committer | Markus Wick <markus@selfnet.de> | 2021-05-26 19:48:24 +0200 |
| commit | 993dbe49fc70f5b7e318db163af61a58dc84b79e (patch) | |
| tree | 7d1812d44df9e8a6c51c7e5b612201a9c1bc955d /src/core/arm/arm_interface.h | |
| parent | 02169406bed62aa466da53487a27cd902b6aff0a (diff) | |
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: */ virtual void SetTPIDR_EL0(u64 value) = 0; - virtual void ChangeProcessorID(std::size_t new_core_id) = 0; - virtual void SaveContext(ThreadContext32& ctx) = 0; virtual void SaveContext(ThreadContext64& ctx) = 0; virtual void LoadContext(const ThreadContext32& ctx) = 0; |
