diff options
| author | 2019-04-07 17:50:31 -0400 | |
|---|---|---|
| committer | 2019-04-07 17:50:31 -0400 | |
| commit | 3c1ce290d0a337997cb2abf611f7679379593da6 (patch) | |
| tree | 50cb112d2f00991aa817f9d4789e0f41c741d8cf /src/core/hle/kernel/process.cpp | |
| parent | Merge pull request #2321 from ReinUsesLisp/gl-state-rework (diff) | |
| parent | core/memory: Remove GetCurrentPageTable() (diff) | |
| download | yuzu-3c1ce290d0a337997cb2abf611f7679379593da6.tar.gz yuzu-3c1ce290d0a337997cb2abf611f7679379593da6.tar.xz yuzu-3c1ce290d0a337997cb2abf611f7679379593da6.zip | |
Merge pull request #2361 from lioncash/pagetable
core/memory: Minor simplifications to page table management
Diffstat (limited to 'src/core/hle/kernel/process.cpp')
| -rw-r--r-- | src/core/hle/kernel/process.cpp | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/src/core/hle/kernel/process.cpp b/src/core/hle/kernel/process.cpp index 041267318..26c6b95ab 100644 --- a/src/core/hle/kernel/process.cpp +++ b/src/core/hle/kernel/process.cpp | |||
| @@ -32,9 +32,6 @@ namespace { | |||
| 32 | * @param priority The priority to give the main thread | 32 | * @param priority The priority to give the main thread |
| 33 | */ | 33 | */ |
| 34 | void SetupMainThread(Process& owner_process, KernelCore& kernel, VAddr entry_point, u32 priority) { | 34 | void SetupMainThread(Process& owner_process, KernelCore& kernel, VAddr entry_point, u32 priority) { |
| 35 | // Setup page table so we can write to memory | ||
| 36 | Memory::SetCurrentPageTable(&owner_process.VMManager().page_table); | ||
| 37 | |||
| 38 | // Initialize new "main" thread | 35 | // Initialize new "main" thread |
| 39 | const VAddr stack_top = owner_process.VMManager().GetTLSIORegionEndAddress(); | 36 | const VAddr stack_top = owner_process.VMManager().GetTLSIORegionEndAddress(); |
| 40 | auto thread_res = Thread::Create(kernel, "main", entry_point, priority, 0, | 37 | auto thread_res = Thread::Create(kernel, "main", entry_point, priority, 0, |