2014-05-21 03:03:45 +00:00
|
|
|
// Copyright 2014 Citra Emulator Project
|
2014-12-17 05:38:14 +00:00
|
|
|
// Licensed under GPLv2 or any later version
|
2014-11-19 08:49:13 +00:00
|
|
|
// Refer to the license.txt file included.
|
2014-05-21 03:03:45 +00:00
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
2015-01-23 01:12:19 +00:00
|
|
|
#include <string>
|
2014-05-21 03:03:45 +00:00
|
|
|
#include "common/common_types.h"
|
|
|
|
#include "core/hle/kernel/kernel.h"
|
2017-05-29 22:45:30 +00:00
|
|
|
#include "core/hle/kernel/wait_object.h"
|
2014-05-21 03:03:45 +00:00
|
|
|
|
|
|
|
namespace Kernel {
|
|
|
|
|
2015-01-23 01:12:19 +00:00
|
|
|
class Thread;
|
|
|
|
|
2015-01-27 04:40:21 +00:00
|
|
|
class Mutex final : public WaitObject {
|
2015-01-23 01:12:19 +00:00
|
|
|
public:
|
|
|
|
/**
|
|
|
|
* Creates a mutex.
|
|
|
|
* @param initial_locked Specifies if the mutex should be locked initially
|
|
|
|
* @param name Optional name of mutex
|
|
|
|
* @return Pointer to new Mutex object
|
|
|
|
*/
|
2015-02-01 02:14:40 +00:00
|
|
|
static SharedPtr<Mutex> Create(bool initial_locked, std::string name = "Unknown");
|
2015-01-23 01:12:19 +00:00
|
|
|
|
2016-09-18 00:38:01 +00:00
|
|
|
std::string GetTypeName() const override {
|
|
|
|
return "Mutex";
|
|
|
|
}
|
|
|
|
std::string GetName() const override {
|
|
|
|
return name;
|
|
|
|
}
|
2015-01-23 01:12:19 +00:00
|
|
|
|
|
|
|
static const HandleType HANDLE_TYPE = HandleType::Mutex;
|
2016-09-18 00:38:01 +00:00
|
|
|
HandleType GetHandleType() const override {
|
|
|
|
return HANDLE_TYPE;
|
|
|
|
}
|
2015-01-23 01:12:19 +00:00
|
|
|
|
2016-09-18 00:38:01 +00:00
|
|
|
int lock_count; ///< Number of times the mutex has been acquired
|
2017-01-01 21:59:30 +00:00
|
|
|
u32 priority; ///< The priority of the mutex, used for priority inheritance.
|
2016-09-18 00:38:01 +00:00
|
|
|
std::string name; ///< Name of mutex (optional)
|
|
|
|
SharedPtr<Thread> holding_thread; ///< Thread that has acquired the mutex
|
2015-01-23 01:12:19 +00:00
|
|
|
|
2017-01-03 00:38:08 +00:00
|
|
|
/**
|
|
|
|
* Elevate the mutex priority to the best priority
|
|
|
|
* among the priorities of all its waiting threads.
|
|
|
|
*/
|
|
|
|
void UpdatePriority();
|
|
|
|
|
2017-01-01 21:53:22 +00:00
|
|
|
bool ShouldWait(Thread* thread) const override;
|
|
|
|
void Acquire(Thread* thread) override;
|
|
|
|
|
2017-01-01 21:59:30 +00:00
|
|
|
void AddWaitingThread(SharedPtr<Thread> thread) override;
|
2017-01-02 18:53:10 +00:00
|
|
|
void RemoveWaitingThread(Thread* thread) override;
|
2015-01-23 01:12:19 +00:00
|
|
|
|
|
|
|
void Release();
|
|
|
|
|
|
|
|
private:
|
2015-02-01 00:56:59 +00:00
|
|
|
Mutex();
|
|
|
|
~Mutex() override;
|
2015-01-23 01:12:19 +00:00
|
|
|
};
|
2014-05-21 03:03:45 +00:00
|
|
|
|
2014-12-07 20:44:21 +00:00
|
|
|
/**
|
|
|
|
* Releases all the mutexes held by the specified thread
|
|
|
|
* @param thread Thread that is holding the mutexes
|
|
|
|
*/
|
2015-01-20 23:33:23 +00:00
|
|
|
void ReleaseThreadMutexes(Thread* thread);
|
2014-12-07 20:44:21 +00:00
|
|
|
|
2014-05-21 03:03:45 +00:00
|
|
|
} // namespace
|