summaryrefslogblamecommitdiffstats
path: root/src/core/hle/kernel/object.cpp
blob: 2c571792b2fae6e12a6bb10f88801c8da76e2738 (plain) (tree)
1
2
3
4
5
6
7
8
9
10




                                            
                                   



                                   
                                                                                             



                                 
                                   
                            
                             




                                   
                                   
                                  
                                    
                                   

                                   
                             



                     
                 


                     
// Copyright 2018 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/kernel.h"
#include "core/hle/kernel/object.h"

namespace Kernel {

Object::Object(KernelCore& kernel) : kernel{kernel}, object_id{kernel.CreateNewObjectID()} {}
Object::~Object() = default;

bool Object::IsWaitable() const {
    switch (GetHandleType()) {
    case HandleType::ReadableEvent:
    case HandleType::Thread:
    case HandleType::Process:
    case HandleType::ServerPort:
    case HandleType::ServerSession:
        return true;

    case HandleType::Unknown:
    case HandleType::WritableEvent:
    case HandleType::SharedMemory:
    case HandleType::TransferMemory:
    case HandleType::ResourceLimit:
    case HandleType::ClientPort:
    case HandleType::ClientSession:
    case HandleType::Session:
        return false;
    }

    UNREACHABLE();
    return false;
}

} // namespace Kernel