summaryrefslogtreecommitdiffstats
path: root/src/core/hle/kernel/semaphore.cpp
blob: 3f364661b4239b2f677492f8c2b5c9f6b4a3267b (plain) (blame)
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.

#include "common/assert.h"
#include "core/hle/kernel/errors.h"
#include "core/hle/kernel/kernel.h"
#include "core/hle/kernel/object_address_table.h"
#include "core/hle/kernel/semaphore.h"
#include "core/hle/kernel/thread.h"

namespace Kernel {

Semaphore::Semaphore() {}
Semaphore::~Semaphore() {}

ResultVal<SharedPtr<Semaphore>> Semaphore::Create(VAddr guest_addr, VAddr mutex_addr, std::string name) {
    SharedPtr<Semaphore> semaphore(new Semaphore);

    // When the semaphore is created, some slots are reserved for other threads,
    // and the rest is reserved for the caller thread;
    semaphore->available_count = Memory::Read32(guest_addr);
    semaphore->name = std::move(name);
    semaphore->guest_addr = guest_addr;
    semaphore->mutex_addr = mutex_addr;

    // Semaphores are referenced by guest address, so track this in the kernel
    g_object_address_table.Insert(guest_addr, semaphore);

    return MakeResult<SharedPtr<Semaphore>>(std::move(semaphore));
}

bool Semaphore::ShouldWait(Thread* thread) const {
    return available_count <= 0;
}

void Semaphore::Acquire(Thread* thread) {
    if (available_count <= 0)
        return;
    --available_count;
    UpdateGuestState();
}

ResultVal<s32> Semaphore::Release(s32 release_count) {
    s32 previous_count = available_count;
    available_count += release_count;
    UpdateGuestState();

    WakeupAllWaitingThreads();

    return MakeResult<s32>(previous_count);
}

void Semaphore::UpdateGuestState() {
    Memory::Write32(guest_addr, available_count);
}


} // namespace Kernel