meso: KPort mini skeleton
This commit is contained in:
20
mesosphere/source/processes/KServerPort.cpp
Normal file
20
mesosphere/source/processes/KServerPort.cpp
Normal file
@@ -0,0 +1,20 @@
|
||||
#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
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user