diff options
| author | 2018-04-23 16:33:00 -0400 | |
|---|---|---|
| committer | 2018-04-23 16:33:00 -0400 | |
| commit | 0214351f4f0e9377792f8ceb657e3a47aba334d1 (patch) | |
| tree | f772d4dbaf3d804497740c6c67d1110f20fd010f /src/core/loader/nro.cpp | |
| parent | Merge pull request #384 from Subv/nvhost-remap (diff) | |
| parent | Kernel: Implemented mutex priority inheritance. (diff) | |
| download | yuzu-0214351f4f0e9377792f8ceb657e3a47aba334d1.tar.gz yuzu-0214351f4f0e9377792f8ceb657e3a47aba334d1.tar.xz yuzu-0214351f4f0e9377792f8ceb657e3a47aba334d1.zip | |
Merge pull request #370 from Subv/sync_primitives
Kernel: Reworked the new kernel synchronization primitives.
Diffstat (limited to 'src/core/loader/nro.cpp')
| -rw-r--r-- | src/core/loader/nro.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/loader/nro.cpp b/src/core/loader/nro.cpp index b5133e4d6..3853cfa1a 100644 --- a/src/core/loader/nro.cpp +++ b/src/core/loader/nro.cpp | |||
| @@ -137,7 +137,7 @@ ResultStatus AppLoader_NRO::Load(Kernel::SharedPtr<Kernel::Process>& process) { | |||
| 137 | process->address_mappings = default_address_mappings; | 137 | process->address_mappings = default_address_mappings; |
| 138 | process->resource_limit = | 138 | process->resource_limit = |
| 139 | Kernel::ResourceLimit::GetForCategory(Kernel::ResourceLimitCategory::APPLICATION); | 139 | Kernel::ResourceLimit::GetForCategory(Kernel::ResourceLimitCategory::APPLICATION); |
| 140 | process->Run(base_addr, 48, Memory::DEFAULT_STACK_SIZE); | 140 | process->Run(base_addr, THREADPRIO_DEFAULT, Memory::DEFAULT_STACK_SIZE); |
| 141 | 141 | ||
| 142 | is_loaded = true; | 142 | is_loaded = true; |
| 143 | return ResultStatus::Success; | 143 | return ResultStatus::Success; |