2014-07-07 03:15:40 +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"
|
|
|
|
|
|
|
|
// Address arbiters are an underlying kernel synchronization object that can be created/used via
|
|
|
|
// supervisor calls (SVCs). They function as sort of a global lock. Typically, games/other CTR
|
|
|
|
// applications use them as an underlying mechanism to implement thread-safe barriers, events, and
|
2014-11-19 08:49:13 +00:00
|
|
|
// semphores.
|
2014-07-07 03:15:40 +00:00
|
|
|
|
|
|
|
////////////////////////////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Kernel namespace
|
|
|
|
|
|
|
|
namespace Kernel {
|
|
|
|
|
|
|
|
/// Address arbitration types
|
|
|
|
enum class ArbitrationType : u32 {
|
|
|
|
Signal,
|
|
|
|
WaitIfLessThan,
|
|
|
|
DecrementAndWaitIfLessThan,
|
|
|
|
WaitIfLessThanWithTimeout,
|
|
|
|
DecrementAndWaitIfLessThanWithTimeout,
|
|
|
|
};
|
|
|
|
|
|
|
|
/// Arbitrate an address
|
2014-10-23 03:20:01 +00:00
|
|
|
ResultCode ArbitrateAddress(Handle handle, ArbitrationType type, u32 address, s32 value);
|
2014-07-07 03:15:40 +00:00
|
|
|
|
|
|
|
/// Create an address arbiter
|
|
|
|
Handle CreateAddressArbiter(const std::string& name = "Unknown");
|
|
|
|
|
|
|
|
} // namespace FileSys
|