mirror of
https://github.com/Atmosphere-NX/Atmosphere.git
synced 2025-06-01 15:28:21 -04:00
strat: prefer os::NativeHandle to Handle/svc::Handle where sensible
This commit is contained in:
parent
597d521f52
commit
d0041a33ac
50 changed files with 193 additions and 190 deletions
|
@ -40,7 +40,7 @@ namespace ams::dmnt {
|
|||
ContinueMode_Step,
|
||||
};
|
||||
private:
|
||||
svc::Handle m_debug_handle{svc::InvalidHandle};
|
||||
os::NativeHandle m_debug_handle{os::InvalidNativeHandle};
|
||||
s32 m_thread_count{0};
|
||||
bool m_is_valid{false};
|
||||
bool m_is_64_bit{false};
|
||||
|
@ -73,7 +73,7 @@ namespace ams::dmnt {
|
|||
}
|
||||
~DebugProcess() { this->Detach(); }
|
||||
|
||||
svc::Handle GetHandle() const { return m_debug_handle; }
|
||||
os::NativeHandle GetHandle() const { return m_debug_handle; }
|
||||
bool IsValid() const { return m_is_valid; }
|
||||
bool Is64Bit() const { return m_is_64_bit; }
|
||||
bool Is64BitAddressSpace() const { return m_is_64_bit_address_space; }
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue