mirror of
https://github.com/jakcron/nstool.git
synced 2024-12-22 18:55:29 +00:00
[nx] Made kMaxSystemCall public.
This commit is contained in:
parent
81e4f06048
commit
cca4a29fd6
|
@ -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