summaryrefslogtreecommitdiff
path: root/src/core/hle/kernel/thread.h
diff options
context:
space:
mode:
authorGravatar bunnei2015-05-11 23:32:28 -0400
committerGravatar bunnei2015-05-11 23:32:28 -0400
commitcb2b2071a8740311af72b43d8f1f9be6fd0cd36f (patch)
tree4c6a14aafa398e5b93f6295e3a09476add3f0025 /src/core/hle/kernel/thread.h
parentMerge pull request #751 from yuriks/idle-thread (diff)
parentCore/Memory: Add TLS support for creating up to 300 threads (diff)
downloadyuzu-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.h2
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;