diff options
| author | bunnei <bunneidev@gmail.com> | 2016-05-12 21:51:35 -0400 |
|---|---|---|
| committer | bunnei <bunneidev@gmail.com> | 2016-05-12 21:51:35 -0400 |
| commit | 0d8bd3ba369a4a6264ba99a66dbc17e1e14e1440 (patch) | |
| tree | c7341fcf893002e87fbe18b0a04b221aff46bf13 /src/core/hle/kernel/thread.h | |
| parent | d474d117f6ec1196967e50f8e94b95de6044c826 (diff) | |
| parent | d192fb066d0d03c217c434f99af0200f75936263 (diff) | |
Merge pull request #1695 from Subv/tls_alloc
Kernel/Threads: Dynamically allocate the TLS region for threads.
Diffstat (limited to 'src/core/hle/kernel/thread.h')
| -rw-r--r-- | src/core/hle/kernel/thread.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/hle/kernel/thread.h b/src/core/hle/kernel/thread.h index 97ba57fc5..deab5d5a6 100644 --- a/src/core/hle/kernel/thread.h +++ b/src/core/hle/kernel/thread.h @@ -127,7 +127,7 @@ public: * Returns the Thread Local Storage address of the current thread * @returns VAddr of the thread's TLS */ - VAddr GetTLSAddress() const; + VAddr GetTLSAddress() const { return tls_address; } Core::ThreadContext context; @@ -144,7 +144,7 @@ public: s32 processor_id; - s32 tls_index; ///< Index of the Thread Local Storage of the thread + VAddr tls_address; ///< Virtual address of the Thread Local Storage of the thread bool waitsynch_waited; ///< Set to true if the last svcWaitSynch call caused the thread to wait |
