mirror of
https://git.suyu.dev/suyu/suyu
synced 2024-11-06 07:17:53 +00:00
5d46038c5c
Cleans out the citra/3DS-specific implementation details that don't apply to the Switch. Sets the stage for implementing ResourceLimit instances properly. While we're at it, remove the erroneous checks within CreateThread() and SetThreadPriority(). While these are indeed checked in some capacity, they are not checked via a ResourceLimit instance. In the process of moving out Citra-specifics, this also replaces the system ResourceLimit instance's values with ones from the Switch.
44 lines
1.3 KiB
C++
44 lines
1.3 KiB
C++
// Copyright 2015 Citra Emulator Project
|
|
// Licensed under GPLv2 or any later version
|
|
// Refer to the license.txt file included.
|
|
|
|
#include "core/hle/kernel/errors.h"
|
|
#include "core/hle/kernel/resource_limit.h"
|
|
#include "core/hle/result.h"
|
|
|
|
namespace Kernel {
|
|
namespace {
|
|
constexpr std::size_t ResourceTypeToIndex(ResourceType type) {
|
|
return static_cast<std::size_t>(type);
|
|
}
|
|
} // Anonymous namespace
|
|
|
|
ResourceLimit::ResourceLimit(KernelCore& kernel) : Object{kernel} {}
|
|
ResourceLimit::~ResourceLimit() = default;
|
|
|
|
SharedPtr<ResourceLimit> ResourceLimit::Create(KernelCore& kernel, std::string name) {
|
|
SharedPtr<ResourceLimit> resource_limit(new ResourceLimit(kernel));
|
|
|
|
resource_limit->name = std::move(name);
|
|
return resource_limit;
|
|
}
|
|
|
|
s64 ResourceLimit::GetCurrentResourceValue(ResourceType resource) const {
|
|
return values.at(ResourceTypeToIndex(resource));
|
|
}
|
|
|
|
s64 ResourceLimit::GetMaxResourceValue(ResourceType resource) const {
|
|
return limits.at(ResourceTypeToIndex(resource));
|
|
}
|
|
|
|
ResultCode ResourceLimit::SetLimitValue(ResourceType resource, s64 value) {
|
|
const auto index = ResourceTypeToIndex(resource);
|
|
|
|
if (value < values[index]) {
|
|
return ERR_INVALID_STATE;
|
|
}
|
|
|
|
values[index] = value;
|
|
return RESULT_SUCCESS;
|
|
}
|
|
} // namespace Kernel
|