aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/core/hle/kernel/mutex.h
blob: d6d5328bee6a94d32723f05b326dce318f184048 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
// Copyright 2014 Citra Emulator Project
// Licensed under GPLv2 or any later version
// Refer to the license.txt file included.

#pragma once

#include <string>

#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; }

    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;

    /**
    * Acquires the specified mutex for the specified thread
    * @param mutex Mutex that is to be acquired
    * @param thread Thread that will acquire the mutex
    */
    void Acquire(SharedPtr<Thread> thread);
    void Release();

private:
    Mutex();
    ~Mutex() override;
};

/**
 * Releases all the mutexes held by the specified thread
 * @param thread Thread that is holding the mutexes
 */
void ReleaseThreadMutexes(Thread* thread);

} // namespace