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/process.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/process.h')
| -rw-r--r-- | src/core/hle/kernel/process.h | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/src/core/hle/kernel/process.h b/src/core/hle/kernel/process.h index a06afef2b..d781ef32c 100644 --- a/src/core/hle/kernel/process.h +++ b/src/core/hle/kernel/process.h @@ -142,8 +142,11 @@ public: MemoryRegionInfo* memory_region = nullptr; - /// Bitmask of the used TLS slots - std::bitset<300> used_tls_slots; + /// The Thread Local Storage area is allocated as processes create threads, + /// each TLS area is 0x200 bytes, so one page (0x1000) is split up in 8 parts, and each part + /// holds the TLS for a specific thread. This vector contains which parts are in use for each page as a bitmask. + /// This vector will grow as more pages are allocated for new threads. + std::vector<std::bitset<8>> tls_slots; VAddr GetLinearHeapAreaAddress() const; VAddr GetLinearHeapBase() const; |
