1
0
Fork 0
mirror of https://github.com/Atmosphere-NX/Atmosphere.git synced 2025-01-10 19:36:19 +00:00
Atmosphere/mesosphere/source/processes/KServerPort.cpp
2019-06-03 17:41:09 -07:00

46 lines
1.1 KiB
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()
{
KCriticalSection &critsec = KScheduler::GetCriticalSection();
critsec.lock();
parent->isServerAlive = false;
// TODO: normal sessions
lightServerSessions.clear_and_dispose(
[&critsec](KLightServerSession *s) {
critsec.unlock();
intrusive_ptr_release(s);
critsec.lock();
}
);
critsec.unlock();
}
bool KServerPort::IsSignaled() const
{
if (!parent->isLight) {
return false; // TODO
} else {
return !lightServerSessions.empty();
}
}
Result KServerPort::AddLightServerSession(KLightServerSession &lightServerSession)
{
KScopedCriticalSection critsec{};
bool wasEmpty = lightServerSessions.empty();
lightServerSessions.push_back(lightServerSession);
if (wasEmpty && !lightServerSessions.empty()) {
NotifyWaiters();
}
return ResultSuccess();
}
}