diff options
Diffstat (limited to 'src/core/hle/kernel/process.h')
| -rw-r--r-- | src/core/hle/kernel/process.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/core/hle/kernel/process.h b/src/core/hle/kernel/process.h index 26e647743..c8af76ce8 100644 --- a/src/core/hle/kernel/process.h +++ b/src/core/hle/kernel/process.h | |||
| @@ -29,7 +29,7 @@ class ProgramMetadata; | |||
| 29 | namespace Kernel { | 29 | namespace Kernel { |
| 30 | 30 | ||
| 31 | class KernelCore; | 31 | class KernelCore; |
| 32 | class ResourceLimit; | 32 | class KResourceLimit; |
| 33 | class KThread; | 33 | class KThread; |
| 34 | class TLSPage; | 34 | class TLSPage; |
| 35 | 35 | ||
| @@ -170,7 +170,7 @@ public: | |||
| 170 | } | 170 | } |
| 171 | 171 | ||
| 172 | /// Gets the resource limit descriptor for this process | 172 | /// Gets the resource limit descriptor for this process |
| 173 | std::shared_ptr<ResourceLimit> GetResourceLimit() const; | 173 | std::shared_ptr<KResourceLimit> GetResourceLimit() const; |
| 174 | 174 | ||
| 175 | /// Gets the ideal CPU core ID for this process | 175 | /// Gets the ideal CPU core ID for this process |
| 176 | u8 GetIdealCoreId() const { | 176 | u8 GetIdealCoreId() const { |
| @@ -402,7 +402,7 @@ private: | |||
| 402 | u32 system_resource_size = 0; | 402 | u32 system_resource_size = 0; |
| 403 | 403 | ||
| 404 | /// Resource limit descriptor for this process | 404 | /// Resource limit descriptor for this process |
| 405 | std::shared_ptr<ResourceLimit> resource_limit; | 405 | std::shared_ptr<KResourceLimit> resource_limit; |
| 406 | 406 | ||
| 407 | /// The ideal CPU core for this process, threads are scheduled on this core by default. | 407 | /// The ideal CPU core for this process, threads are scheduled on this core by default. |
| 408 | u8 ideal_core = 0; | 408 | u8 ideal_core = 0; |