summaryrefslogtreecommitdiffstats
path: root/src/core/hle/kernel/process.h
diff options
context:
space:
mode:
authorYuri Kunde Schlesner <yuriks@yuriks.net>2015-07-19 20:18:57 +0200
committerYuri Kunde Schlesner <yuriks@yuriks.net>2015-08-16 06:03:45 +0200
commita12a30c9e0c059f87649a1f87b76003ee44efe73 (patch)
treeb9f11ddcd80594ff3276cb8823eda4c613d53808 /src/core/hle/kernel/process.h
parentKernel: Properly implement ControlMemory FREE and COMMIT (diff)
downloadyuzu-a12a30c9e0c059f87649a1f87b76003ee44efe73.tar
yuzu-a12a30c9e0c059f87649a1f87b76003ee44efe73.tar.gz
yuzu-a12a30c9e0c059f87649a1f87b76003ee44efe73.tar.bz2
yuzu-a12a30c9e0c059f87649a1f87b76003ee44efe73.tar.lz
yuzu-a12a30c9e0c059f87649a1f87b76003ee44efe73.tar.xz
yuzu-a12a30c9e0c059f87649a1f87b76003ee44efe73.tar.zst
yuzu-a12a30c9e0c059f87649a1f87b76003ee44efe73.zip
Diffstat (limited to '')
-rw-r--r--src/core/hle/kernel/process.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/core/hle/kernel/process.h b/src/core/hle/kernel/process.h
index 567d5df18..5c7de9044 100644
--- a/src/core/hle/kernel/process.h
+++ b/src/core/hle/kernel/process.h
@@ -104,6 +104,8 @@ public:
/// processes access to specific I/O regions and device memory.
boost::container::static_vector<AddressMapping, 8> address_mappings;
ProcessFlags flags;
+ /// Kernel compatibility version for this process
+ u16 kernel_version = 0;
/// The id of this process
u32 process_id = next_process_id++;