summaryrefslogblamecommitdiffstats
path: root/src/core/hle/kernel/event.h
blob: 73aec4e79d2156068fceeb9711980ef7911090d6 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
13
14

                                        
                                          










                                   



                                                  
                                                                  

   


                                                                                            
   
                                                                        

   

                                          
   
                                            

   

                                         
   
                                     



                                                             
                                     
                                               
   
                                                                                  

              
// Copyright 2014 Citra Emulator Project
// Licensed under GPLv2
// Refer to the license.txt file included.

#pragma once

#include "common/common_types.h"

#include "core/hle/kernel/kernel.h"
#include "core/hle/svc.h"

namespace Kernel {

/**
 * Changes whether an event is locked or not
 * @param handle Handle to event to change
 * @param locked Boolean locked value to set event
 */
ResultCode SetEventLocked(const Handle handle, const bool locked);

/**
 * Hackish function to set an events permanent lock state, used to pass through synch blocks
 * @param handle Handle to event to change
 * @param permanent_locked Boolean permanent locked value to set event
 */
ResultCode SetPermanentLock(Handle handle, const bool permanent_locked);

/**
 * Signals an event
 * @param handle Handle to event to signal
 */
ResultCode SignalEvent(const Handle handle);

/**
 * Clears an event
 * @param handle Handle to event to clear
 */
ResultCode ClearEvent(Handle handle);

/**
 * Creates an event
 * @param reset_type ResetType describing how to create event
 * @param name Optional name of event
 * @return Handle to newly created Event object
 */
Handle CreateEvent(const ResetType reset_type, const std::string& name="Unknown");

} // namespace