hle: Remove Domain and SyncObject kernel objects.

This commit is contained in:
bunnei
2018-01-23 16:13:19 -05:00
parent 932fa94af7
commit 67758857e4
10 changed files with 2 additions and 169 deletions

View File

@ -7,7 +7,6 @@
#include <memory>
#include <string>
#include "common/common_types.h"
#include "core/hle/kernel/sync_object.h"
#include "core/hle/result.h"
namespace Kernel {
@ -16,7 +15,7 @@ class ServerSession;
class Session;
class Thread;
class ClientSession final : public SyncObject {
class ClientSession final : public Object {
public:
friend class ServerSession;