meso: add KLightSession skeleton, remove KBaseSession

This commit is contained in:
TuxSH
2018-11-11 22:53:15 +01:00
committed by Michael Scire
parent eb7e4153d1
commit 9c8f818c29
14 changed files with 165 additions and 159 deletions

View File

@@ -0,0 +1,21 @@
#include <mesosphere/processes/KLightSession.hpp>
#include <mesosphere/core/KCoreContext.hpp>
namespace mesosphere
{
KLightSession::~KLightSession()
{
}
Result KLightSession::Initialize()
{
SetClientServerParent();
client.isRemoteActive = true;
server.isRemoteActive = true;
SetResourceOwner(KCoreContext::GetCurrentInstance().GetCurrentProcess());
return ResultSuccess();
}
}