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
|
|
|
|
|
2019-03-23 22:09:02 +01:00
|
|
|
#include <memory>
|
2015-01-23 02:12:19 +01:00
|
|
|
#include <string>
|
2014-05-21 05:03:45 +02:00
|
|
|
#include "common/common_types.h"
|
|
|
|
#include "core/hle/kernel/kernel.h"
|
2017-05-30 00:45:30 +02:00
|
|
|
#include "core/hle/kernel/wait_object.h"
|
2017-10-23 22:52:23 +02:00
|
|
|
#include "core/hle/result.h"
|
2014-05-21 05:03:45 +02:00
|
|
|
|
|
|
|
namespace Kernel {
|
|
|
|
|
2015-01-23 02:12:19 +01:00
|
|
|
class Thread;
|
|
|
|
|
2015-01-27 05:40:21 +01:00
|
|
|
class Mutex final : public WaitObject {
|
2015-01-23 02:12:19 +01:00
|
|
|
public:
|
2019-03-23 21:04:19 +01:00
|
|
|
explicit Mutex(KernelSystem& kernel);
|
|
|
|
~Mutex() override;
|
|
|
|
|
2016-09-18 02:38:01 +02:00
|
|
|
std::string GetTypeName() const override {
|
|
|
|
return "Mutex";
|
|
|
|
}
|
|
|
|
std::string GetName() const override {
|
|
|
|
return name;
|
|
|
|
}
|
2015-01-23 02:12:19 +01:00
|
|
|
|
2019-04-11 22:30:52 +02:00
|
|
|
static constexpr HandleType HANDLE_TYPE = HandleType::Mutex;
|
2016-09-18 02:38:01 +02:00
|
|
|
HandleType GetHandleType() const override {
|
|
|
|
return HANDLE_TYPE;
|
|
|
|
}
|
2015-01-23 02:12:19 +01:00
|
|
|
|
2019-03-23 21:04:19 +01:00
|
|
|
int lock_count; ///< Number of times the mutex has been acquired
|
|
|
|
u32 priority; ///< The priority of the mutex, used for priority inheritance.
|
|
|
|
std::string name; ///< Name of mutex (optional)
|
|
|
|
std::shared_ptr<Thread> holding_thread; ///< Thread that has acquired the mutex
|
2015-01-23 02:12:19 +01:00
|
|
|
|
2017-01-03 01:38:08 +01:00
|
|
|
/**
|
|
|
|
* Elevate the mutex priority to the best priority
|
|
|
|
* among the priorities of all its waiting threads.
|
|
|
|
*/
|
|
|
|
void UpdatePriority();
|
|
|
|
|
2017-01-01 22:53:22 +01:00
|
|
|
bool ShouldWait(Thread* thread) const override;
|
|
|
|
void Acquire(Thread* thread) override;
|
|
|
|
|
2019-03-23 21:04:19 +01:00
|
|
|
void AddWaitingThread(std::shared_ptr<Thread> thread) override;
|
2017-01-02 19:53:10 +01:00
|
|
|
void RemoveWaitingThread(Thread* thread) override;
|
2015-01-23 02:12:19 +01:00
|
|
|
|
2017-10-23 22:52:23 +02:00
|
|
|
/**
|
|
|
|
* Attempts to release the mutex from the specified thread.
|
|
|
|
* @param thread Thread that wants to release the mutex.
|
|
|
|
* @returns The result code of the operation.
|
|
|
|
*/
|
|
|
|
ResultCode Release(Thread* thread);
|
2015-01-23 02:12:19 +01:00
|
|
|
|
|
|
|
private:
|
2019-02-01 18:19:20 +01:00
|
|
|
KernelSystem& kernel;
|
2015-01-23 02:12:19 +01:00
|
|
|
};
|
2014-05-21 05:03:45 +02:00
|
|
|
|
2014-12-07 21:44:21 +01:00
|
|
|
/**
|
|
|
|
* Releases all the mutexes held by the specified thread
|
|
|
|
* @param thread Thread that is holding the mutexes
|
|
|
|
*/
|
2015-01-21 00:33:23 +01:00
|
|
|
void ReleaseThreadMutexes(Thread* thread);
|
2014-12-07 21:44:21 +01:00
|
|
|
|
2017-10-23 22:52:23 +02:00
|
|
|
} // namespace Kernel
|