From dda94e56dde35f5df969b71b2be9195b7d8cdc05 Mon Sep 17 00:00:00 2001 From: Subv Date: Sun, 10 May 2015 23:19:54 -0500 Subject: Core/Memory: Add TLS support for creating up to 300 threads --- src/core/hle/kernel/process.h | 3 +++ 1 file changed, 3 insertions(+) (limited to 'src/core/hle/kernel/process.h') diff --git a/src/core/hle/kernel/process.h b/src/core/hle/kernel/process.h index 22cd1049..90881054 100644 --- a/src/core/hle/kernel/process.h +++ b/src/core/hle/kernel/process.h @@ -74,6 +74,9 @@ public: /// The id of this process u32 process_id = next_process_id++; + /// Bitmask of the used TLS slots + std::bitset<300> used_tls_slots; + /** * Parses a list of kernel capability descriptors (as found in the ExHeader) and applies them * to this process. -- cgit v1.2.3