2014-05-28 00:16:13 +00:00
|
|
|
// 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 {
|
|
|
|
|
2014-05-28 02:14:00 +00:00
|
|
|
/**
|
|
|
|
* Changes whether an event is locked or not
|
|
|
|
* @param handle Handle to event to change
|
|
|
|
* @param locked Boolean locked value to set event
|
2014-05-30 00:00:44 +00:00
|
|
|
* @return Result of operation, 0 on success, otherwise error code
|
2014-05-28 02:14:00 +00:00
|
|
|
*/
|
2014-05-30 00:00:44 +00:00
|
|
|
Result SetEventLocked(const Handle handle, const bool locked);
|
2014-05-28 02:14:00 +00:00
|
|
|
|
2014-06-01 14:33:55 +00:00
|
|
|
/**
|
|
|
|
* 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
|
|
|
|
* @return Result of operation, 0 on success, otherwise error code
|
|
|
|
*/
|
|
|
|
Result SetPermanentLock(Handle handle, const bool permanent_locked);
|
|
|
|
|
2014-06-06 02:35:36 +00:00
|
|
|
/**
|
|
|
|
* Signals an event
|
|
|
|
* @param handle Handle to event to signal
|
|
|
|
* @return Result of operation, 0 on success, otherwise error code
|
|
|
|
*/
|
|
|
|
Result SignalEvent(const Handle handle);
|
|
|
|
|
2014-05-28 00:16:13 +00:00
|
|
|
/**
|
|
|
|
* Clears an event
|
|
|
|
* @param handle Handle to event to clear
|
|
|
|
* @return Result of operation, 0 on success, otherwise error code
|
|
|
|
*/
|
|
|
|
Result ClearEvent(Handle handle);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Creates an event
|
|
|
|
* @param reset_type ResetType describing how to create event
|
2014-06-03 00:38:34 +00:00
|
|
|
* @param name Optional name of event
|
2014-05-30 00:00:44 +00:00
|
|
|
* @return Handle to newly created Event object
|
2014-05-28 00:16:13 +00:00
|
|
|
*/
|
2014-06-06 04:23:33 +00:00
|
|
|
Handle CreateEvent(const ResetType reset_type, const std::string& name="Unknown");
|
2014-05-28 00:16:13 +00:00
|
|
|
|
|
|
|
} // namespace
|