diff options
| author | 2015-05-10 23:19:54 -0500 | |
|---|---|---|
| committer | 2015-05-11 20:09:23 -0500 | |
| commit | dda94e56dde35f5df969b71b2be9195b7d8cdc05 (patch) | |
| tree | bbded5ba6fc9d9a52268614f87c8ac11ed5789f6 /src/core/hle/kernel/process.h | |
| parent | Merge pull request #750 from Subv/process_svc (diff) | |
| download | yuzu-dda94e56dde35f5df969b71b2be9195b7d8cdc05.tar.gz yuzu-dda94e56dde35f5df969b71b2be9195b7d8cdc05.tar.xz yuzu-dda94e56dde35f5df969b71b2be9195b7d8cdc05.zip | |
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: | |||
| 74 | /// The id of this process | 74 | /// The id of this process |
| 75 | u32 process_id = next_process_id++; | 75 | u32 process_id = next_process_id++; |
| 76 | 76 | ||
| 77 | /// Bitmask of the used TLS slots | ||
| 78 | std::bitset<300> used_tls_slots; | ||
| 79 | |||
| 77 | /** | 80 | /** |
| 78 | * Parses a list of kernel capability descriptors (as found in the ExHeader) and applies them | 81 | * Parses a list of kernel capability descriptors (as found in the ExHeader) and applies them |
| 79 | * to this process. | 82 | * to this process. |