mirror of
https://github.com/Atmosphere-NX/Atmosphere
synced 2025-01-25 16:32:55 +00:00
20 lines
390 B
C++
20 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
|
|
{
|
|
|
|
KServerPort::~KServerPort()
|
|
{
|
|
KScopedCriticalSection critsec{};
|
|
parent->isServerAlive = false;
|
|
}
|
|
|
|
bool KServerPort::IsSignaled() const
|
|
{
|
|
return false; // TODO
|
|
}
|
|
|
|
}
|