summaryrefslogtreecommitdiffstats
path: root/src/core/hle/kernel/process.h
diff options
context:
space:
mode:
authorDavid Marcec <dmarcecguzman@gmail.com>2018-01-16 23:06:45 +0100
committerDavid Marcec <dmarcecguzman@gmail.com>2018-01-16 23:06:45 +0100
commit68143af6369c1f3349a455fbf94d1bc77ad55957 (patch)
treee0024c82bf788da4837b80de4efa479f523b8dd3 /src/core/hle/kernel/process.h
parentIncreased heap size and changed tls area vaddr (diff)
downloadyuzu-68143af6369c1f3349a455fbf94d1bc77ad55957.tar
yuzu-68143af6369c1f3349a455fbf94d1bc77ad55957.tar.gz
yuzu-68143af6369c1f3349a455fbf94d1bc77ad55957.tar.bz2
yuzu-68143af6369c1f3349a455fbf94d1bc77ad55957.tar.lz
yuzu-68143af6369c1f3349a455fbf94d1bc77ad55957.tar.xz
yuzu-68143af6369c1f3349a455fbf94d1bc77ad55957.tar.zst
yuzu-68143af6369c1f3349a455fbf94d1bc77ad55957.zip
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 20b4e401c..add98472f 100644
--- a/src/core/hle/kernel/process.h
+++ b/src/core/hle/kernel/process.h
@@ -131,6 +131,8 @@ public:
/// Bitmask of allowed CPUs that this process' threads can run on. TODO(Subv): Actually parse
/// this value from the process header.
u32 allowed_processor_mask = THREADPROCESSORID_DEFAULT_MASK;
+ u32 allowed_thread_priority_mask = 0xFFFFFFFF;
+ u32 is_virtual_address_memory_enabled = 0;
/// Current status of the process
ProcessStatus status;