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/thread.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/thread.h')
| -rw-r--r-- | src/core/hle/kernel/thread.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/hle/kernel/thread.h b/src/core/hle/kernel/thread.h index 1d4d010fe..cfbebab08 100644 --- a/src/core/hle/kernel/thread.h +++ b/src/core/hle/kernel/thread.h | |||
| @@ -157,7 +157,7 @@ public: | |||
| 157 | 157 | ||
| 158 | s32 processor_id; | 158 | s32 processor_id; |
| 159 | 159 | ||
| 160 | VAddr tls_address; ///< Address of the Thread Local Storage of the thread | 160 | s32 tls_index; ///< Index of the Thread Local Storage of the thread |
| 161 | 161 | ||
| 162 | /// Mutexes currently held by this thread, which will be released when it exits. | 162 | /// Mutexes currently held by this thread, which will be released when it exits. |
| 163 | boost::container::flat_set<SharedPtr<Mutex>> held_mutexes; | 163 | boost::container::flat_set<SharedPtr<Mutex>> held_mutexes; |