summaryrefslogtreecommitdiff
path: root/src/core/hle/kernel/process.h
diff options
context:
space:
mode:
authorGravatar Yuri Kunde Schlesner2015-07-19 15:18:57 -0300
committerGravatar Yuri Kunde Schlesner2015-08-16 01:03:45 -0300
commita12a30c9e0c059f87649a1f87b76003ee44efe73 (patch)
treeb9f11ddcd80594ff3276cb8823eda4c613d53808 /src/core/hle/kernel/process.h
parentKernel: Properly implement ControlMemory FREE and COMMIT (diff)
downloadyuzu-a12a30c9e0c059f87649a1f87b76003ee44efe73.tar.gz
yuzu-a12a30c9e0c059f87649a1f87b76003ee44efe73.tar.xz
yuzu-a12a30c9e0c059f87649a1f87b76003ee44efe73.zip
Process: Store kernel compatibility version during loading
Diffstat (limited to 'src/core/hle/kernel/process.h')
-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:
104 /// processes access to specific I/O regions and device memory. 104 /// processes access to specific I/O regions and device memory.
105 boost::container::static_vector<AddressMapping, 8> address_mappings; 105 boost::container::static_vector<AddressMapping, 8> address_mappings;
106 ProcessFlags flags; 106 ProcessFlags flags;
107 /// Kernel compatibility version for this process
108 u16 kernel_version = 0;
107 109
108 /// The id of this process 110 /// The id of this process
109 u32 process_id = next_process_id++; 111 u32 process_id = next_process_id++;