summaryrefslogtreecommitdiffstats
path: root/src/core/hle/kernel/k_resource_limit.cpp (follow)
Commit message (Collapse)AuthorAgeFilesLines
* kernel: remove relative task registrationLiam2023-08-151-6/+5
|
* kernel: prefer std::addressofLiam2023-03-131-2/+2
|
* kernel: convert KResourceLimitLiam2023-03-131-49/+49
|
* kernel: remove kernel_Liam2023-03-131-2/+2
|
* kernel/svc: convert to new styleLiam2023-03-131-1/+1
|
* kernel: avoid signed overflow UB on MSVCLiam2023-03-081-1/+2
|
* kernel/svc_types: refreshLiam2022-11-101-5/+6
|
* core: Replace all instances of ResultCode with Resultgerman772022-06-271-1/+1
|
* general: Convert source file copyright comments over to SPDXMorph2022-04-231-3/+2
| | | | | This formats all copyright comments according to SPDX formatting guidelines. Additionally, this resolves the remaining GPLv2 only licensed files by relicensing them to GPLv2.0-or-later.
* core: hle: kernel: KResourceLimit: Add a helper function for creating a KResourceLimit for a process.bunnei2022-02-211-0/+19
|
* kernel: Fix missing peak set in KResourceLimit::SetLimitValueMorph2021-06-181-0/+1
|
* kernel: KLightConditionVariable: Update implementation to 12.xMorph2021-06-111-1/+1
| | | | Updates the implementation of KLightConditionVariable to FW 12.x
* general: Replace RESULT_SUCCESS with ResultSuccessMorph2021-06-021-1/+1
| | | | Transition to PascalCase for result names.
* kernel: Eliminate variable shadowingLioncash2021-05-081-2/+2
| | | | | Now that the large kernel refactor is merged, we can eliminate the remaining variable shadowing cases.
* hle: kernel: Migrate KResourceLimit to KAutoObject.bunnei2021-05-061-4/+10
|
* k_resource_limit: Minor cleanup of member variables/headersameerj2021-04-141-9/+4
|
* kernel: Unify result codes (#5890)Chloe2021-02-131-1/+1
| | | | | | | | | * kernel: Unify result codes Drop the usage of ERR_NAME convention in kernel for ResultName. Removed seperation between svc_results.h & errors.h as we mainly include both most of the time anyways. * oops * rename errors to svc_results
* Address issuesChloe Marcec2021-02-021-2/+0
|
* fix compile errorChloe Marcec2021-01-301-1/+1
|
* cleanup commentingChloe Marcec2021-01-301-2/+2
|
* Drop m_ from lockChloe Marcec2021-01-301-8/+8
|
* Move to GetGlobalTimeNs, fix GetTotalPhysicalMemoryAvailableChloe Marcec2021-01-301-4/+3
|
* kernel: Rewrite resource limit to be more accurateChloe Marcec2021-01-301-0/+155
Matches closer to hardware