mirror of
https://github.com/Atmosphere-NX/Atmosphere
synced 2025-01-11 07:14:46 +00:00
21 lines
390 B
C++
21 lines
390 B
C++
|
#include <mesosphere/processes/KPort.hpp>
|
||
|
#include <mesosphere/threading/KScopedCriticalSection.hpp>
|
||
|
#include <mesosphere/threading/KThread.hpp>
|
||
|
#include <mesosphere/core/KCoreContext.hpp>
|
||
|
|
||
|
namespace mesosphere
|
||
|
{
|
||
|
|
||
|
KClientPort::~KClientPort()
|
||
|
{
|
||
|
KScopedCriticalSection critsec{};
|
||
|
parent->isClientAlive = false;
|
||
|
}
|
||
|
|
||
|
bool KClientPort::IsSignaled() const
|
||
|
{
|
||
|
return false; // TODO
|
||
|
}
|
||
|
|
||
|
}
|