meso: KBaseSession

This commit is contained in:
TuxSH
2018-11-11 01:36:15 +01:00
committed by Michael Scire
parent baa34ddab5
commit 86c43331eb
10 changed files with 194 additions and 4 deletions

View File

@@ -0,0 +1,10 @@
#include <mesosphere/processes/KBaseClientSession.hpp>
namespace mesosphere
{
KBaseClientSession::~KBaseClientSession()
{
}
}

View File

@@ -0,0 +1,11 @@
#include <mesosphere/processes/KBaseServerSession.hpp>
namespace mesosphere
{
KBaseServerSession::~KBaseServerSession()
{
// Children classes will lock critical section + set client "isRemoteAlive"
}
}

View File

@@ -0,0 +1,17 @@
#include <mesosphere/processes/KBaseSession.hpp>
namespace mesosphere
{
KBaseSession::~KBaseSession()
{
}
Result KBaseSession::Initialize()
{
SetClientServerParent();
return ResultSuccess();
}
}