diff options
| author | 2019-11-25 18:28:48 -0500 | |
|---|---|---|
| committer | 2019-11-28 12:01:53 -0500 | |
| commit | c3d3b173d39b7c12fa9b3d5d34040e9377f2888e (patch) | |
| tree | 61ff05239fe2b3d08bcf775f1528263cffc9aff4 /src/core/hle/kernel/object.h | |
| parent | Merge pull request #3169 from lioncash/memory (diff) | |
| download | yuzu-c3d3b173d39b7c12fa9b3d5d34040e9377f2888e.tar.gz yuzu-c3d3b173d39b7c12fa9b3d5d34040e9377f2888e.tar.xz yuzu-c3d3b173d39b7c12fa9b3d5d34040e9377f2888e.zip | |
kernel: Implement a more accurate IPC dispatch.
Diffstat (limited to 'src/core/hle/kernel/object.h')
| -rw-r--r-- | src/core/hle/kernel/object.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/core/hle/kernel/object.h b/src/core/hle/kernel/object.h index bbbb4e7cc..e3391e2af 100644 --- a/src/core/hle/kernel/object.h +++ b/src/core/hle/kernel/object.h | |||
| @@ -29,6 +29,7 @@ enum class HandleType : u32 { | |||
| 29 | ServerPort, | 29 | ServerPort, |
| 30 | ClientSession, | 30 | ClientSession, |
| 31 | ServerSession, | 31 | ServerSession, |
| 32 | Session, | ||
| 32 | }; | 33 | }; |
| 33 | 34 | ||
| 34 | class Object : NonCopyable, public std::enable_shared_from_this<Object> { | 35 | class Object : NonCopyable, public std::enable_shared_from_this<Object> { |