mirror of
https://github.com/Atmosphere-NX/Atmosphere.git
synced 2025-05-18 00:54:23 -04:00
kern: implement SvcCloseHandle
This commit is contained in:
parent
7400a8ff68
commit
d0d8914f28
6 changed files with 31 additions and 3 deletions
|
@ -36,6 +36,8 @@ namespace ams::kern {
|
|||
constexpr KServerSession() : parent(), request_list(), current_request(), lock() { /* ... */ }
|
||||
virtual ~KServerSession() { /* ... */ }
|
||||
|
||||
virtual void Destroy() override;
|
||||
|
||||
void Initialize(KSession *p) { this->parent = p; }
|
||||
|
||||
constexpr const KSession *GetParent() const { return this->parent; }
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue