diff options
| author | 2015-05-11 23:32:28 -0400 | |
|---|---|---|
| committer | 2015-05-11 23:32:28 -0400 | |
| commit | cb2b2071a8740311af72b43d8f1f9be6fd0cd36f (patch) | |
| tree | 4c6a14aafa398e5b93f6295e3a09476add3f0025 /src/core/hle/kernel/thread.h | |
| parent | Merge pull request #751 from yuriks/idle-thread (diff) | |
| parent | Core/Memory: Add TLS support for creating up to 300 threads (diff) | |
| download | yuzu-cb2b2071a8740311af72b43d8f1f9be6fd0cd36f.tar.gz yuzu-cb2b2071a8740311af72b43d8f1f9be6fd0cd36f.tar.xz yuzu-cb2b2071a8740311af72b43d8f1f9be6fd0cd36f.zip | |
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/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 a06c7d4fe..6b329c12a 100644 --- a/src/core/hle/kernel/thread.h +++ b/src/core/hle/kernel/thread.h | |||
| @@ -151,7 +151,7 @@ public: | |||
| 151 | 151 | ||
| 152 | s32 processor_id; | 152 | s32 processor_id; |
| 153 | 153 | ||
| 154 | VAddr tls_address; ///< Address of the Thread Local Storage of the thread | 154 | s32 tls_index; ///< Index of the Thread Local Storage of the thread |
| 155 | 155 | ||
| 156 | /// Mutexes currently held by this thread, which will be released when it exits. | 156 | /// Mutexes currently held by this thread, which will be released when it exits. |
| 157 | boost::container::flat_set<SharedPtr<Mutex>> held_mutexes; | 157 | boost::container::flat_set<SharedPtr<Mutex>> held_mutexes; |