2014-05-21 05:03:45 +02:00
|
|
|
// Copyright 2014 Citra Emulator Project
|
2014-12-17 06:38:14 +01:00
|
|
|
// Licensed under GPLv2 or any later version
|
2014-11-19 09:49:13 +01:00
|
|
|
// Refer to the license.txt file included.
|
2014-05-21 05:03:45 +02:00
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include "common/common_types.h"
|
2018-08-02 04:40:00 +02:00
|
|
|
#include "core/hle/kernel/object.h"
|
2018-07-31 14:06:09 +02:00
|
|
|
|
|
|
|
union ResultCode;
|
2014-05-21 05:03:45 +02:00
|
|
|
|
|
|
|
namespace Kernel {
|
|
|
|
|
2018-08-28 18:30:33 +02:00
|
|
|
class HandleTable;
|
2015-01-23 02:12:19 +01:00
|
|
|
class Thread;
|
|
|
|
|
2018-04-20 21:42:29 +02:00
|
|
|
class Mutex final {
|
2015-01-23 02:12:19 +01:00
|
|
|
public:
|
2018-04-20 19:01:14 +02:00
|
|
|
/// Flag that indicates that a mutex still has threads waiting for it.
|
|
|
|
static constexpr u32 MutexHasWaitersFlag = 0x40000000;
|
|
|
|
/// Mask of the bits in a mutex address value that contain the mutex owner.
|
|
|
|
static constexpr u32 MutexOwnerMask = 0xBFFFFFFF;
|
|
|
|
|
|
|
|
/// Attempts to acquire a mutex at the specified address.
|
2018-08-28 18:30:33 +02:00
|
|
|
static ResultCode TryAcquire(HandleTable& handle_table, VAddr address,
|
|
|
|
Handle holding_thread_handle, Handle requesting_thread_handle);
|
2018-04-20 19:01:14 +02:00
|
|
|
|
|
|
|
/// Releases the mutex at the specified address.
|
|
|
|
static ResultCode Release(VAddr address);
|
|
|
|
|
2015-01-23 02:12:19 +01:00
|
|
|
private:
|
2018-04-20 21:42:29 +02:00
|
|
|
Mutex() = default;
|
|
|
|
~Mutex() = default;
|
2015-01-23 02:12:19 +01:00
|
|
|
};
|
2014-05-21 05:03:45 +02:00
|
|
|
|
2018-01-01 20:02:26 +01:00
|
|
|
} // namespace Kernel
|