2014-05-20 20:03:45 -07:00
|
|
|
// Copyright 2014 Citra Emulator Project
|
2014-12-16 21:38:14 -08:00
|
|
|
// Licensed under GPLv2 or any later version
|
2014-11-19 00:49:13 -08:00
|
|
|
// Refer to the license.txt file included.
|
2014-05-20 20:03:45 -07:00
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include "common/common_types.h"
|
2018-07-31 05:06:09 -07:00
|
|
|
|
|
|
|
union ResultCode;
|
2014-05-20 20:03:45 -07:00
|
|
|
|
2019-03-13 21:29:54 -07:00
|
|
|
namespace Core {
|
|
|
|
class System;
|
|
|
|
}
|
2014-05-20 20:03:45 -07:00
|
|
|
|
2019-03-13 21:29:54 -07:00
|
|
|
namespace Kernel {
|
2015-01-22 17:12:19 -08:00
|
|
|
|
2018-04-20 12:42:29 -07:00
|
|
|
class Mutex final {
|
2015-01-22 17:12:19 -08:00
|
|
|
public:
|
2019-03-13 21:29:54 -07:00
|
|
|
explicit Mutex(Core::System& system);
|
|
|
|
~Mutex();
|
|
|
|
|
2018-04-20 10:01:14 -07: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.
|
2019-03-13 21:29:54 -07:00
|
|
|
ResultCode TryAcquire(VAddr address, Handle holding_thread_handle,
|
|
|
|
Handle requesting_thread_handle);
|
2018-04-20 10:01:14 -07:00
|
|
|
|
|
|
|
/// Releases the mutex at the specified address.
|
2019-03-13 21:29:54 -07:00
|
|
|
ResultCode Release(VAddr address);
|
2018-04-20 10:01:14 -07:00
|
|
|
|
2015-01-22 17:12:19 -08:00
|
|
|
private:
|
2019-03-13 21:29:54 -07:00
|
|
|
Core::System& system;
|
2015-01-22 17:12:19 -08:00
|
|
|
};
|
2014-05-20 20:03:45 -07:00
|
|
|
|
2018-01-01 11:02:26 -08:00
|
|
|
} // namespace Kernel
|