summaryrefslogtreecommitdiffstats
path: root/src/core/hle/kernel/process.h
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2018-01-17 00:27:48 +0100
committerGitHub <noreply@github.com>2018-01-17 00:27:48 +0100
commit1aa4cdc3c8326e5db875c8a26afe14d6fbffdc3d (patch)
tree160c4a53715012ad8cb16c0738240d9530af4739 /src/core/hle/kernel/process.h
parentMerge pull request #45 from FearlessTobi/patch-1 (diff)
parentUpdate memory.h (diff)
downloadyuzu-1aa4cdc3c8326e5db875c8a26afe14d6fbffdc3d.tar
yuzu-1aa4cdc3c8326e5db875c8a26afe14d6fbffdc3d.tar.gz
yuzu-1aa4cdc3c8326e5db875c8a26afe14d6fbffdc3d.tar.bz2
yuzu-1aa4cdc3c8326e5db875c8a26afe14d6fbffdc3d.tar.lz
yuzu-1aa4cdc3c8326e5db875c8a26afe14d6fbffdc3d.tar.xz
yuzu-1aa4cdc3c8326e5db875c8a26afe14d6fbffdc3d.tar.zst
yuzu-1aa4cdc3c8326e5db875c8a26afe14d6fbffdc3d.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;