summaryrefslogtreecommitdiffstats
path: root/src/core/hle/kernel/k_resource_limit.cpp (unfollow)
Commit message (Collapse)AuthorFilesLines
2023-08-15kernel: remove relative task registrationLiam1-6/+5
2023-03-13kernel: prefer std::addressofLiam1-2/+2
2023-03-13kernel: convert KResourceLimitLiam1-49/+49
2023-03-13kernel: remove kernel_Liam1-2/+2
2023-03-13kernel/svc: convert to new styleLiam1-1/+1
2023-03-08kernel: avoid signed overflow UB on MSVCLiam1-1/+2
2022-11-10kernel/svc_types: refreshLiam1-5/+6
2022-06-27core: Replace all instances of ResultCode with Resultgerman771-1/+1
2022-04-23general: Convert source file copyright comments over to SPDXMorph1-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.
2022-02-21core: hle: kernel: KResourceLimit: Add a helper function for creating a KResourceLimit for a process.bunnei1-0/+19
2021-06-18kernel: Fix missing peak set in KResourceLimit::SetLimitValueMorph1-0/+1
2021-06-11kernel: KLightConditionVariable: Update implementation to 12.xMorph1-1/+1
Updates the implementation of KLightConditionVariable to FW 12.x
2021-06-02general: Replace RESULT_SUCCESS with ResultSuccessMorph1-1/+1
Transition to PascalCase for result names.
2021-05-08kernel: Eliminate variable shadowingLioncash1-2/+2
Now that the large kernel refactor is merged, we can eliminate the remaining variable shadowing cases.
2021-05-06hle: kernel: Migrate KResourceLimit to KAutoObject.bunnei1-4/+10
2021-04-14k_resource_limit: Minor cleanup of member variables/headersameerj1-9/+4
2021-02-13kernel: Unify result codes (#5890)Chloe1-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
2021-02-02Address issuesChloe Marcec1-2/+0
2021-01-30fix compile errorChloe Marcec1-1/+1
2021-01-30cleanup commentingChloe Marcec1-2/+2
2021-01-30Drop m_ from lockChloe Marcec1-8/+8
2021-01-30Move to GetGlobalTimeNs, fix GetTotalPhysicalMemoryAvailableChloe Marcec1-4/+3
2021-01-30kernel: Rewrite resource limit to be more accurateChloe Marcec1-0/+155
Matches closer to hardware