diff options
| author | bunnei <bunneidev@gmail.com> | 2015-05-11 23:32:28 -0400 |
|---|---|---|
| committer | bunnei <bunneidev@gmail.com> | 2015-05-11 23:32:28 -0400 |
| commit | cb2b2071a8740311af72b43d8f1f9be6fd0cd36f (patch) | |
| tree | 4c6a14aafa398e5b93f6295e3a09476add3f0025 /src/core/hle/kernel/process.h | |
| parent | ee8da4c35649a70cfb61484d0a41ba04aff034c1 (diff) | |
| parent | dda94e56dde35f5df969b71b2be9195b7d8cdc05 (diff) | |
Merge pull request #748 from Subv/tls_max
Core/Memory: Add TLS support for creating up to 300 threads
Diffstat (limited to 'src/core/hle/kernel/process.h')
| -rw-r--r-- | src/core/hle/kernel/process.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/core/hle/kernel/process.h b/src/core/hle/kernel/process.h index 22cd1049b..90881054c 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. |
