diff options
| author | 2020-11-13 11:11:12 -0800 | |
|---|---|---|
| committer | 2020-11-29 01:31:51 -0800 | |
| commit | 7b642c77811dc3887756f5abac5a9710564b098e (patch) | |
| tree | 09c9d764734db56896f77d986afa6ccd5d2c745d /src/core/hle/kernel/thread.h | |
| parent | Merge pull request #4998 from Morph1984/bioshock-patch (diff) | |
| download | yuzu-7b642c77811dc3887756f5abac5a9710564b098e.tar.gz yuzu-7b642c77811dc3887756f5abac5a9710564b098e.tar.xz yuzu-7b642c77811dc3887756f5abac5a9710564b098e.zip | |
hle: kernel: multicore: Replace n-JITs impl. with 4 JITs.
Diffstat (limited to 'src/core/hle/kernel/thread.h')
| -rw-r--r-- | src/core/hle/kernel/thread.h | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/src/core/hle/kernel/thread.h b/src/core/hle/kernel/thread.h index 8daf79fac..20e86fb81 100644 --- a/src/core/hle/kernel/thread.h +++ b/src/core/hle/kernel/thread.h | |||
| @@ -248,10 +248,6 @@ public: | |||
| 248 | 248 | ||
| 249 | void SetSynchronizationResults(SynchronizationObject* object, ResultCode result); | 249 | void SetSynchronizationResults(SynchronizationObject* object, ResultCode result); |
| 250 | 250 | ||
| 251 | Core::ARM_Interface& ArmInterface(); | ||
| 252 | |||
| 253 | const Core::ARM_Interface& ArmInterface() const; | ||
| 254 | |||
| 255 | SynchronizationObject* GetSignalingObject() const { | 251 | SynchronizationObject* GetSignalingObject() const { |
| 256 | return signaling_object; | 252 | return signaling_object; |
| 257 | } | 253 | } |
| @@ -586,7 +582,6 @@ private: | |||
| 586 | Common::SpinLock context_guard{}; | 582 | Common::SpinLock context_guard{}; |
| 587 | ThreadContext32 context_32{}; | 583 | ThreadContext32 context_32{}; |
| 588 | ThreadContext64 context_64{}; | 584 | ThreadContext64 context_64{}; |
| 589 | std::unique_ptr<Core::ARM_Interface> arm_interface{}; | ||
| 590 | std::shared_ptr<Common::Fiber> host_context{}; | 585 | std::shared_ptr<Common::Fiber> host_context{}; |
| 591 | 586 | ||
| 592 | u64 thread_id = 0; | 587 | u64 thread_id = 0; |