mirror of
https://github.com/jakcron/nstool
synced 2024-11-14 17:56:39 +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:
|
||||
static const uint32_t kMaxSystemCall = (BIT(3) * 24) - 1;
|
||||
|
||||
SystemCallHandler();
|
||||
|
||||
bool operator==(const SystemCallHandler& other) const;
|
||||
|
@ -25,7 +27,6 @@ namespace nx
|
|||
|
||||
private:
|
||||
const std::string kModuleName = "SYSTEM_CALL_HANDLER";
|
||||
static const uint32_t kMaxSystemCall = (BIT(3) * 24) - 1;
|
||||
static const size_t kSyscallTotalEntryNum = (kMaxSystemCall / 24) + 1;
|
||||
|
||||
bool mIsSet;
|
||||
|
|
Loading…
Reference in a new issue