diff options
author | Subv <subv2112@gmail.com> | 2015-05-11 06:19:54 +0200 |
---|---|---|
committer | Subv <subv2112@gmail.com> | 2015-05-12 03:09:23 +0200 |
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 yuzu-dda94e56dde35f5df969b71b2be9195b7d8cdc05.tar.gz yuzu-dda94e56dde35f5df969b71b2be9195b7d8cdc05.tar.bz2 yuzu-dda94e56dde35f5df969b71b2be9195b7d8cdc05.tar.lz yuzu-dda94e56dde35f5df969b71b2be9195b7d8cdc05.tar.xz yuzu-dda94e56dde35f5df969b71b2be9195b7d8cdc05.tar.zst yuzu-dda94e56dde35f5df969b71b2be9195b7d8cdc05.zip |
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: 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; |