2016-06-14 16:03:30 -07:00
|
|
|
// Copyright 2016 Citra Emulator Project
|
|
|
|
// Licensed under GPLv2 or any later version
|
|
|
|
// Refer to the license.txt file included.
|
|
|
|
|
|
|
|
#include "common/assert.h"
|
|
|
|
|
|
|
|
#include "core/hle/kernel/client_session.h"
|
2017-06-04 21:52:19 -07:00
|
|
|
#include "core/hle/kernel/errors.h"
|
|
|
|
#include "core/hle/kernel/hle_ipc.h"
|
2016-06-14 16:03:30 -07:00
|
|
|
#include "core/hle/kernel/server_session.h"
|
|
|
|
|
|
|
|
namespace Kernel {
|
|
|
|
|
2016-12-02 19:58:02 -08:00
|
|
|
ClientSession::ClientSession() = default;
|
2016-12-08 12:01:10 -08:00
|
|
|
ClientSession::~ClientSession() {
|
2016-12-14 09:33:49 -08:00
|
|
|
// This destructor will be called automatically when the last ClientSession handle is closed by
|
|
|
|
// the emulated application.
|
2016-06-14 16:03:30 -07:00
|
|
|
|
2017-01-04 20:23:17 -08:00
|
|
|
if (parent->server) {
|
|
|
|
if (parent->server->hle_handler)
|
|
|
|
parent->server->hle_handler->ClientDisconnected(parent->server);
|
2016-12-08 12:01:10 -08:00
|
|
|
|
2017-01-04 20:23:17 -08:00
|
|
|
// TODO(Subv): Force a wake up of all the ServerSession's waiting threads and set
|
|
|
|
// their WaitSynchronization result to 0xC920181A.
|
|
|
|
}
|
|
|
|
|
|
|
|
parent->client = nullptr;
|
2016-12-08 12:01:10 -08:00
|
|
|
}
|
|
|
|
|
2016-12-05 08:02:08 -08:00
|
|
|
ResultCode ClientSession::SendSyncRequest() {
|
2016-06-14 16:03:30 -07:00
|
|
|
// Signal the server session that new data is available
|
2017-01-04 20:23:17 -08:00
|
|
|
if (parent->server)
|
|
|
|
return parent->server->HandleSyncRequest();
|
|
|
|
|
2017-05-21 00:11:36 -07:00
|
|
|
return ERR_SESSION_CLOSED_BY_REMOTE;
|
2016-06-14 16:03:30 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace
|