summaryrefslogtreecommitdiffstats
path: root/src/core/hle/kernel/k_client_session.h
diff options
context:
space:
mode:
authorLiam <byteslice@airmail.cc>2023-12-06 23:29:32 +0100
committerLiam <byteslice@airmail.cc>2023-12-06 23:33:00 +0100
commit40bb176c396b7af6ca50d2e26561cbb20d2e40d1 (patch)
tree2c2ed0803aee8dedecc5eaa7d1d56490b93d4665 /src/core/hle/kernel/k_client_session.h
parentMerge pull request #12236 from liamwhite/cpu-refactor (diff)
downloadyuzu-40bb176c396b7af6ca50d2e26561cbb20d2e40d1.tar
yuzu-40bb176c396b7af6ca50d2e26561cbb20d2e40d1.tar.gz
yuzu-40bb176c396b7af6ca50d2e26561cbb20d2e40d1.tar.bz2
yuzu-40bb176c396b7af6ca50d2e26561cbb20d2e40d1.tar.lz
yuzu-40bb176c396b7af6ca50d2e26561cbb20d2e40d1.tar.xz
yuzu-40bb176c396b7af6ca50d2e26561cbb20d2e40d1.tar.zst
yuzu-40bb176c396b7af6ca50d2e26561cbb20d2e40d1.zip
Diffstat (limited to '')
-rw-r--r--src/core/hle/kernel/k_client_session.h18
1 files changed, 3 insertions, 15 deletions
diff --git a/src/core/hle/kernel/k_client_session.h b/src/core/hle/kernel/k_client_session.h
index 9b62e55e4..a39213e17 100644
--- a/src/core/hle/kernel/k_client_session.h
+++ b/src/core/hle/kernel/k_client_session.h
@@ -9,24 +9,12 @@
#include "core/hle/kernel/slab_helpers.h"
#include "core/hle/result.h"
-union Result;
-
-namespace Core::Memory {
-class Memory;
-}
-
-namespace Core::Timing {
-class CoreTiming;
-}
-
namespace Kernel {
class KernelCore;
class KSession;
-class KThread;
-class KClientSession final
- : public KAutoObjectWithSlabHeapAndContainer<KClientSession, KAutoObjectWithList> {
+class KClientSession final : public KAutoObject {
KERNEL_AUTOOBJECT_TRAITS(KClientSession, KAutoObject);
public:
@@ -39,13 +27,13 @@ public:
}
void Destroy() override;
- static void PostDestroy(uintptr_t arg) {}
KSession* GetParent() const {
return m_parent;
}
- Result SendSyncRequest();
+ Result SendSyncRequest(uintptr_t address, size_t size);
+ Result SendAsyncRequest(KEvent* event, uintptr_t address, size_t size);
void OnServerClosed();