summaryrefslogtreecommitdiffstats
path: root/src/core/hle/kernel/thread.h
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2015-05-12 05:32:28 +0200
committerbunnei <bunneidev@gmail.com>2015-05-12 05:32:28 +0200
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
yuzu-cb2b2071a8740311af72b43d8f1f9be6fd0cd36f.tar.gz
yuzu-cb2b2071a8740311af72b43d8f1f9be6fd0cd36f.tar.bz2
yuzu-cb2b2071a8740311af72b43d8f1f9be6fd0cd36f.tar.lz
yuzu-cb2b2071a8740311af72b43d8f1f9be6fd0cd36f.tar.xz
yuzu-cb2b2071a8740311af72b43d8f1f9be6fd0cd36f.tar.zst
yuzu-cb2b2071a8740311af72b43d8f1f9be6fd0cd36f.zip
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:
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;