|
|
@ -14,7 +14,8 @@ namespace Kernel {
|
|
|
|
Semaphore::Semaphore() {}
|
|
|
|
Semaphore::Semaphore() {}
|
|
|
|
Semaphore::~Semaphore() {}
|
|
|
|
Semaphore::~Semaphore() {}
|
|
|
|
|
|
|
|
|
|
|
|
ResultVal<SharedPtr<Semaphore>> Semaphore::Create(VAddr guest_addr, VAddr mutex_addr, std::string name) {
|
|
|
|
ResultVal<SharedPtr<Semaphore>> Semaphore::Create(VAddr guest_addr, VAddr mutex_addr,
|
|
|
|
|
|
|
|
std::string name) {
|
|
|
|
SharedPtr<Semaphore> semaphore(new Semaphore);
|
|
|
|
SharedPtr<Semaphore> semaphore(new Semaphore);
|
|
|
|
|
|
|
|
|
|
|
|
// When the semaphore is created, some slots are reserved for other threads,
|
|
|
|
// When the semaphore is created, some slots are reserved for other threads,
|
|
|
@ -37,23 +38,28 @@ bool Semaphore::ShouldWait(Thread* thread) const {
|
|
|
|
void Semaphore::Acquire(Thread* thread) {
|
|
|
|
void Semaphore::Acquire(Thread* thread) {
|
|
|
|
if (available_count <= 0)
|
|
|
|
if (available_count <= 0)
|
|
|
|
return;
|
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
|
|
--available_count;
|
|
|
|
--available_count;
|
|
|
|
UpdateGuestState();
|
|
|
|
UpdateGuestState();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
ResultVal<s32> Semaphore::Release(s32 release_count) {
|
|
|
|
ResultCode Semaphore::Release(s32 target) {
|
|
|
|
s32 previous_count = available_count;
|
|
|
|
++available_count;
|
|
|
|
available_count += release_count;
|
|
|
|
|
|
|
|
UpdateGuestState();
|
|
|
|
UpdateGuestState();
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if (target == -1) {
|
|
|
|
|
|
|
|
// When -1, wake up all waiting threads
|
|
|
|
WakeupAllWaitingThreads();
|
|
|
|
WakeupAllWaitingThreads();
|
|
|
|
|
|
|
|
} else {
|
|
|
|
|
|
|
|
// Otherwise, wake up just a single thread
|
|
|
|
|
|
|
|
WakeupWaitingThread(GetHighestPriorityReadyThread());
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
return MakeResult<s32>(previous_count);
|
|
|
|
return RESULT_SUCCESS;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void Semaphore::UpdateGuestState() {
|
|
|
|
void Semaphore::UpdateGuestState() {
|
|
|
|
Memory::Write32(guest_addr, available_count);
|
|
|
|
Memory::Write32(guest_addr, available_count);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
} // namespace Kernel
|
|
|
|
} // namespace Kernel
|
|
|
|