diff options
| author | Rodrigo Locatti <reinuseslisp@airmail.cc> | 2020-09-14 20:39:05 +0000 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-09-14 20:39:05 +0000 |
| commit | 1a9774f824c3ae75e9344d897deec19ba871f059 (patch) | |
| tree | 44638c8d178116c2d990bae4a9dfa7319f36cdaa /src/core/hle/kernel/client_session.h | |
| parent | 042567e4b21312dc00f1831401d32096364e0226 (diff) | |
| parent | ec2a6e5ba801d850380742db19c1546ac3ff9c4b (diff) | |
Merge pull request #4651 from lioncash/kernel-global
kernel: Remove all dependencies on the global system instance
Diffstat (limited to 'src/core/hle/kernel/client_session.h')
| -rw-r--r-- | src/core/hle/kernel/client_session.h | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/src/core/hle/kernel/client_session.h b/src/core/hle/kernel/client_session.h index c5f760d7d..e5e0690c2 100644 --- a/src/core/hle/kernel/client_session.h +++ b/src/core/hle/kernel/client_session.h @@ -16,6 +16,10 @@ namespace Core::Memory { class Memory; } +namespace Core::Timing { +class CoreTiming; +} + namespace Kernel { class KernelCore; @@ -42,7 +46,8 @@ public: return HANDLE_TYPE; } - ResultCode SendSyncRequest(std::shared_ptr<Thread> thread, Core::Memory::Memory& memory); + ResultCode SendSyncRequest(std::shared_ptr<Thread> thread, Core::Memory::Memory& memory, + Core::Timing::CoreTiming& core_timing); bool ShouldWait(const Thread* thread) const override; |
