diff options
| author | 2015-05-09 00:39:56 -0300 | |
|---|---|---|
| committer | 2015-05-09 01:29:52 -0300 | |
| commit | 1c0b87edc2d8262c06ea4c301bcfc884875f918b (patch) | |
| tree | f5b49739cc6cb7ca758111c5171c84b2c3152f5f /src/core/hle/kernel/thread.cpp | |
| parent | Loader: Remove .bin file support (diff) | |
| download | yuzu-1c0b87edc2d8262c06ea4c301bcfc884875f918b.tar.gz yuzu-1c0b87edc2d8262c06ea4c301bcfc884875f918b.tar.xz yuzu-1c0b87edc2d8262c06ea4c301bcfc884875f918b.zip | |
Memory: Re-organize and rename memory area address constants
Diffstat (limited to 'src/core/hle/kernel/thread.cpp')
| -rw-r--r-- | src/core/hle/kernel/thread.cpp | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/core/hle/kernel/thread.cpp b/src/core/hle/kernel/thread.cpp index 9577b889a..0a3fd7cb1 100644 --- a/src/core/hle/kernel/thread.cpp +++ b/src/core/hle/kernel/thread.cpp | |||
| @@ -443,7 +443,8 @@ void Thread::BoostPriority(s32 priority) { | |||
| 443 | 443 | ||
| 444 | SharedPtr<Thread> SetupIdleThread() { | 444 | SharedPtr<Thread> SetupIdleThread() { |
| 445 | // We need to pass a few valid values to get around parameter checking in Thread::Create. | 445 | // We need to pass a few valid values to get around parameter checking in Thread::Create. |
| 446 | auto thread = Thread::Create("idle", Memory::KERNEL_MEMORY_VADDR, THREADPRIO_LOWEST, 0, | 446 | // TODO(yuriks): Figure out a way to avoid passing the bogus VAddr parameter |
| 447 | auto thread = Thread::Create("idle", Memory::TLS_AREA_VADDR, THREADPRIO_LOWEST, 0, | ||
| 447 | THREADPROCESSORID_0, 0).MoveFrom(); | 448 | THREADPROCESSORID_0, 0).MoveFrom(); |
| 448 | 449 | ||
| 449 | thread->idle = true; | 450 | thread->idle = true; |
| @@ -455,7 +456,7 @@ SharedPtr<Thread> SetupMainThread(u32 stack_size, u32 entry_point, s32 priority) | |||
| 455 | 456 | ||
| 456 | // Initialize new "main" thread | 457 | // Initialize new "main" thread |
| 457 | auto thread_res = Thread::Create("main", entry_point, priority, 0, | 458 | auto thread_res = Thread::Create("main", entry_point, priority, 0, |
| 458 | THREADPROCESSORID_0, Memory::SCRATCHPAD_VADDR_END); | 459 | THREADPROCESSORID_0, Memory::HEAP_VADDR_END - stack_size); |
| 459 | 460 | ||
| 460 | SharedPtr<Thread> thread = thread_res.MoveFrom(); | 461 | SharedPtr<Thread> thread = thread_res.MoveFrom(); |
| 461 | 462 | ||