hle: Remove Domain and SyncObject kernel objects.

This commit is contained in:
bunnei 2018-01-23 16:13:19 -05:00
parent 2ab0f638f0
commit 4fabdf77d7
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;