diff options
Diffstat (limited to 'src/core/hle/kernel/thread.cpp')
| -rw-r--r-- | src/core/hle/kernel/thread.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/hle/kernel/thread.cpp b/src/core/hle/kernel/thread.cpp index 736be50db..c01d08ebb 100644 --- a/src/core/hle/kernel/thread.cpp +++ b/src/core/hle/kernel/thread.cpp | |||
| @@ -429,7 +429,7 @@ ResultVal<SharedPtr<Thread>> Thread::Create(std::string name, VAddr entry_point, | |||
| 429 | // Map the page to the current process' address space. | 429 | // Map the page to the current process' address space. |
| 430 | // TODO(Subv): Find the correct MemoryState for this region. | 430 | // TODO(Subv): Find the correct MemoryState for this region. |
| 431 | vm_manager.MapMemoryBlock(Memory::TLS_AREA_VADDR + available_page * Memory::PAGE_SIZE, | 431 | vm_manager.MapMemoryBlock(Memory::TLS_AREA_VADDR + available_page * Memory::PAGE_SIZE, |
| 432 | linheap_memory, offset, Memory::PAGE_SIZE, MemoryState::Private); | 432 | linheap_memory, offset, Memory::PAGE_SIZE, MemoryState::Static); |
| 433 | } | 433 | } |
| 434 | 434 | ||
| 435 | // Mark the slot as used | 435 | // Mark the slot as used |