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










                                   

                                          
                                                                  
   
                                            

   

                                         
                                                                  
   
                                     



                                                             
                                     
                                               
   
                                                                                  

              
// Copyright 2014 Citra Emulator Project
// Licensed under GPLv2 or any later version
// 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 {

/**
 * Signals an event
 * @param handle Handle to event to signal
 * @return Result of operation, 0 on success, otherwise error code
 */
ResultCode SignalEvent(const Handle handle);

/**
 * Clears an event
 * @param handle Handle to event to clear
 * @return Result of operation, 0 on success, otherwise error code
 */
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