citra/src/core/hle/kernel/mutex.h

59 lines
1.6 KiB
C
Raw Normal View History

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
// Refer to the license.txt file included.
2014-05-21 05:03:45 +02:00
#pragma once
#include <string>
2014-05-21 05:03:45 +02:00
#include "common/common_types.h"
#include "core/hle/kernel/kernel.h"
namespace Kernel {
class Thread;
class Mutex final : public WaitObject {
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
*/
static SharedPtr<Mutex> Create(bool initial_locked, std::string name = "Unknown");
std::string GetTypeName() const override { return "Mutex"; }
std::string GetName() const override { return name; }
static const HandleType HANDLE_TYPE = HandleType::Mutex;
HandleType GetHandleType() const override { return HANDLE_TYPE; }
2015-02-10 04:06:09 +01:00
int lock_count; ///< Number of times the mutex has been acquired
std::string name; ///< Name of mutex (optional)
SharedPtr<Thread> holding_thread; ///< Thread that has acquired the mutex
bool ShouldWait() override;
void Acquire() override;
/**
2015-09-10 17:07:33 +02:00
* Acquires the specified mutex for the specified thread
* @param thread Thread that will acquire the mutex
*/
void Acquire(SharedPtr<Thread> thread);
void Release();
private:
Mutex();
~Mutex() override;
};
2014-05-21 05:03:45 +02:00
/**
* Releases all the mutexes held by the specified thread
* @param thread Thread that is holding the mutexes
*/
void ReleaseThreadMutexes(Thread* thread);
2014-05-21 05:03:45 +02:00
} // namespace