summaryrefslogblamecommitdiffstats
path: root/src/core/hle/kernel/k_light_condition_variable.h
blob: ab612426d6557d92badd91a8800a0cdaf0306886 (plain) (tree)
1
2
3
4
5
6
7
8
9

                                                               
 


                                
                                     

                  
 
                 
                 

                               
       
                                                                              
 

                                                                                        

        

                                      

                     
// SPDX-FileCopyrightText: Copyright 2020 yuzu Emulator Project
// SPDX-License-Identifier: GPL-2.0-or-later

#pragma once

#include "common/common_types.h"
#include "core/hle/kernel/k_thread.h"

namespace Kernel {

class KernelCore;
class KLightLock;

class KLightConditionVariable {
public:
    explicit KLightConditionVariable(KernelCore& kernel) : m_kernel{kernel} {}

    void Wait(KLightLock* lock, s64 timeout = -1, bool allow_terminating_thread = true);
    void Broadcast();

private:
    KernelCore& m_kernel;
    KThread::WaiterList m_wait_list{};
};
} // namespace Kernel