mirror of
https://gitlab.com/suyu-emu/suyu.git
synced 2024-03-15 23:15:44 +00:00
9046d4a548
* kernel: Replace usage of boost::intrusive_ptr with std::shared_ptr for kernel objects. - See https://github.com/citra-emu/citra/pull/4710 for details.
36 lines
1.1 KiB
C++
36 lines
1.1 KiB
C++
// Copyright 2016 Citra Emulator Project
|
|
// Licensed under GPLv2 or any later version
|
|
// Refer to the license.txt file included.
|
|
|
|
#include "core/hle/kernel/client_session.h"
|
|
#include "core/hle/kernel/errors.h"
|
|
#include "core/hle/kernel/hle_ipc.h"
|
|
#include "core/hle/kernel/server_session.h"
|
|
#include "core/hle/kernel/session.h"
|
|
#include "core/hle/kernel/thread.h"
|
|
#include "core/hle/result.h"
|
|
|
|
namespace Kernel {
|
|
|
|
ClientSession::ClientSession(KernelCore& kernel) : Object{kernel} {}
|
|
ClientSession::~ClientSession() {
|
|
// This destructor will be called automatically when the last ClientSession handle is closed by
|
|
// the emulated application.
|
|
if (parent->server) {
|
|
parent->server->ClientDisconnected();
|
|
}
|
|
|
|
parent->client = nullptr;
|
|
}
|
|
|
|
ResultCode ClientSession::SendSyncRequest(Thread* thread) {
|
|
// Keep ServerSession alive until we're done working with it.
|
|
if (parent->server == nullptr)
|
|
return ERR_SESSION_CLOSED_BY_REMOTE;
|
|
|
|
// Signal the server session that new data is available
|
|
return parent->server->HandleSyncRequest(SharedFrom(thread));
|
|
}
|
|
|
|
} // namespace Kernel
|