mirror of
https://github.com/Atmosphere-NX/Atmosphere.git
synced 2024-11-08 21:21:48 +00:00
kern: add ResourceLimit to svcGetInfo
This commit is contained in:
parent
4fca870f2f
commit
ea6000b372
1 changed files with 25 additions and 0 deletions
|
@ -107,6 +107,31 @@ namespace ams::kern::svc {
|
|||
}
|
||||
}
|
||||
break;
|
||||
case ams::svc::InfoType_ResourceLimit:
|
||||
{
|
||||
/* Verify the input handle is invalid. */
|
||||
R_UNLESS(handle == ams::svc::InvalidHandle, svc::ResultInvalidHandle());
|
||||
|
||||
/* Verify the sub-type is valid. */
|
||||
R_UNLESS(info_subtype == 0, svc::ResultInvalidCombination());
|
||||
|
||||
/* Get the handle table and resource limit. */
|
||||
KHandleTable &handle_table = GetCurrentProcess().GetHandleTable();
|
||||
KResourceLimit *resource_limit = GetCurrentProcess().GetResourceLimit();
|
||||
|
||||
if (resource_limit != nullptr) {
|
||||
/* Get a new handle for the resource limit. */
|
||||
ams::svc::Handle tmp;
|
||||
R_TRY(handle_table.Add(std::addressof(tmp), resource_limit));
|
||||
|
||||
/* Set the output. */
|
||||
*out = tmp;
|
||||
} else {
|
||||
/* Set the output. */
|
||||
*out = ams::svc::InvalidHandle;
|
||||
}
|
||||
}
|
||||
break;
|
||||
default:
|
||||
return svc::ResultInvalidEnumValue();
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue