mirror of
https://github.com/jakcron/nstool
synced 2024-11-15 02:06:40 +00:00
[nx] Made kMaxSystemCall public.
This commit is contained in:
parent
81e4f06048
commit
cca4a29fd6
1 changed files with 2 additions and 1 deletions
|
@ -7,6 +7,8 @@ namespace nx
|
||||||
public IKernelCapabilityHandler
|
public IKernelCapabilityHandler
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
|
static const uint32_t kMaxSystemCall = (BIT(3) * 24) - 1;
|
||||||
|
|
||||||
SystemCallHandler();
|
SystemCallHandler();
|
||||||
|
|
||||||
bool operator==(const SystemCallHandler& other) const;
|
bool operator==(const SystemCallHandler& other) const;
|
||||||
|
@ -25,7 +27,6 @@ namespace nx
|
||||||
|
|
||||||
private:
|
private:
|
||||||
const std::string kModuleName = "SYSTEM_CALL_HANDLER";
|
const std::string kModuleName = "SYSTEM_CALL_HANDLER";
|
||||||
static const uint32_t kMaxSystemCall = (BIT(3) * 24) - 1;
|
|
||||||
static const size_t kSyscallTotalEntryNum = (kMaxSystemCall / 24) + 1;
|
static const size_t kSyscallTotalEntryNum = (kMaxSystemCall / 24) + 1;
|
||||||
|
|
||||||
bool mIsSet;
|
bool mIsSet;
|
||||||
|
|
Loading…
Reference in a new issue