aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/core/hle/kernel/thread.h
diff options
context:
space:
mode:
authorGravatar bunnei <bunneidev@gmail.com>2015-05-11 23:32:28 -0400
committerGravatar bunnei <bunneidev@gmail.com>2015-05-11 23:32:28 -0400
commitcb2b2071a8740311af72b43d8f1f9be6fd0cd36f (patch)
tree4c6a14aafa398e5b93f6295e3a09476add3f0025 /src/core/hle/kernel/thread.h
parentee8da4c35649a70cfb61484d0a41ba04aff034c1 (diff)
parentdda94e56dde35f5df969b71b2be9195b7d8cdc05 (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/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 a06c7d4f..6b329c12 100644
--- a/src/core/hle/kernel/thread.h
+++ b/src/core/hle/kernel/thread.h
@@ -151,7 +151,7 @@ public:
s32 processor_id;
- VAddr tls_address; ///< Address of the Thread Local Storage of the thread
+ s32 tls_index; ///< Index of the Thread Local Storage of the thread
/// Mutexes currently held by this thread, which will be released when it exits.
boost::container::flat_set<SharedPtr<Mutex>> held_mutexes;