summaryrefslogtreecommitdiffstats
path: root/src/core/hle/kernel/k_client_session.h
diff options
context:
space:
mode:
authorliamwhite <liamwhite@users.noreply.github.com>2023-12-10 01:03:56 +0100
committerGitHub <noreply@github.com>2023-12-10 01:03:56 +0100
commit875568bb3e34725578f7fa3661c8bad89f23a173 (patch)
tree966c08ba52f4e786765eef72848013a4c7aa559f /src/core/hle/kernel/k_client_session.h
parentMerge pull request #12299 from liamwhite/light-ipc (diff)
parentkernel: implement remaining IPC syscalls (diff)
downloadyuzu-875568bb3e34725578f7fa3661c8bad89f23a173.tar
yuzu-875568bb3e34725578f7fa3661c8bad89f23a173.tar.gz
yuzu-875568bb3e34725578f7fa3661c8bad89f23a173.tar.bz2
yuzu-875568bb3e34725578f7fa3661c8bad89f23a173.tar.lz
yuzu-875568bb3e34725578f7fa3661c8bad89f23a173.tar.xz
yuzu-875568bb3e34725578f7fa3661c8bad89f23a173.tar.zst
yuzu-875568bb3e34725578f7fa3661c8bad89f23a173.zip
Diffstat (limited to 'src/core/hle/kernel/k_client_session.h')
-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();