Files
eden/src/core/hle/kernel/mutex.h
T

37 lines
1001 B
C++
Raw Normal View History

2014-05-20 23:03:45 -04:00
// Copyright 2014 Citra Emulator Project
2014-12-16 21:38:14 -08:00
// Licensed under GPLv2 or any later version
// Refer to the license.txt file included.
2014-05-20 23:03:45 -04:00
#pragma once
#include "common/common_types.h"
#include "core/hle/kernel/object.h"
2018-07-31 08:06:09 -04:00
union ResultCode;
2014-05-20 23:03:45 -04:00
namespace Kernel {
2018-08-28 12:30:33 -04:00
class HandleTable;
2015-01-22 23:12:19 -02:00
class Thread;
2018-04-20 14:42:29 -05:00
class Mutex final {
2015-01-22 23:12:19 -02:00
public:
/// 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 12:30:33 -04:00
static ResultCode TryAcquire(HandleTable& handle_table, VAddr address,
Handle holding_thread_handle, Handle requesting_thread_handle);
/// Releases the mutex at the specified address.
static ResultCode Release(VAddr address);
2015-01-22 23:12:19 -02:00
private:
2018-04-20 14:42:29 -05:00
Mutex() = default;
~Mutex() = default;
2015-01-22 23:12:19 -02:00
};
2014-05-20 23:03:45 -04:00
2018-01-01 14:02:26 -05:00
} // namespace Kernel