2014-12-04 00:49:51 +01:00
|
|
|
// Copyright 2014 Citra Emulator Project
|
2014-12-17 06:38:14 +01:00
|
|
|
// Licensed under GPLv2 or any later version
|
2014-12-04 00:49:51 +01:00
|
|
|
// Refer to the license.txt file included.
|
|
|
|
|
2015-05-06 09:06:12 +02:00
|
|
|
#include "common/assert.h"
|
2017-05-21 09:11:36 +02:00
|
|
|
#include "core/hle/kernel/errors.h"
|
2014-12-04 00:49:51 +01:00
|
|
|
#include "core/hle/kernel/kernel.h"
|
2016-09-21 08:52:38 +02:00
|
|
|
#include "core/hle/kernel/semaphore.h"
|
2014-12-04 00:49:51 +01:00
|
|
|
#include "core/hle/kernel/thread.h"
|
|
|
|
|
|
|
|
namespace Kernel {
|
|
|
|
|
2016-09-19 03:01:46 +02:00
|
|
|
Semaphore::Semaphore() {}
|
|
|
|
Semaphore::~Semaphore() {}
|
2015-02-01 01:56:59 +01:00
|
|
|
|
2015-01-11 16:53:11 +01:00
|
|
|
ResultVal<SharedPtr<Semaphore>> Semaphore::Create(s32 initial_count, s32 max_count,
|
2016-09-18 02:38:01 +02:00
|
|
|
std::string name) {
|
2014-12-04 17:40:36 +01:00
|
|
|
|
2014-12-13 02:46:52 +01:00
|
|
|
if (initial_count > max_count)
|
2017-05-21 09:11:36 +02:00
|
|
|
return ERR_INVALID_COMBINATION_KERNEL;
|
2014-12-13 02:46:52 +01:00
|
|
|
|
2015-01-11 16:53:11 +01:00
|
|
|
SharedPtr<Semaphore> semaphore(new Semaphore);
|
2014-12-04 00:49:51 +01:00
|
|
|
|
2014-12-04 17:55:13 +01:00
|
|
|
// When the semaphore is created, some slots are reserved for other threads,
|
|
|
|
// and the rest is reserved for the caller thread
|
2014-12-13 02:46:52 +01:00
|
|
|
semaphore->max_count = max_count;
|
2014-12-13 04:22:11 +01:00
|
|
|
semaphore->available_count = initial_count;
|
2015-01-11 16:53:11 +01:00
|
|
|
semaphore->name = std::move(name);
|
2014-12-04 00:49:51 +01:00
|
|
|
|
2015-01-11 16:53:11 +01:00
|
|
|
return MakeResult<SharedPtr<Semaphore>>(std::move(semaphore));
|
2014-12-04 17:40:36 +01:00
|
|
|
}
|
|
|
|
|
2017-01-01 22:53:22 +01:00
|
|
|
bool Semaphore::ShouldWait(Thread* thread) const {
|
2015-01-11 16:53:11 +01:00
|
|
|
return available_count <= 0;
|
|
|
|
}
|
|
|
|
|
2017-01-01 22:53:22 +01:00
|
|
|
void Semaphore::Acquire(Thread* thread) {
|
2017-01-02 01:07:37 +01:00
|
|
|
if (available_count <= 0)
|
|
|
|
return;
|
2015-01-11 16:53:11 +01:00
|
|
|
--available_count;
|
|
|
|
}
|
2014-12-04 17:40:36 +01:00
|
|
|
|
2015-01-11 16:53:11 +01:00
|
|
|
ResultVal<s32> Semaphore::Release(s32 release_count) {
|
|
|
|
if (max_count - available_count < release_count)
|
2017-05-21 09:11:36 +02:00
|
|
|
return ERR_OUT_OF_RANGE_KERNEL;
|
2014-12-04 17:40:36 +01:00
|
|
|
|
2015-01-11 16:53:11 +01:00
|
|
|
s32 previous_count = available_count;
|
|
|
|
available_count += release_count;
|
2014-12-04 17:40:36 +01:00
|
|
|
|
2015-06-08 05:39:37 +02:00
|
|
|
WakeupAllWaitingThreads();
|
2015-05-20 02:24:30 +02:00
|
|
|
|
2015-01-11 16:53:11 +01:00
|
|
|
return MakeResult<s32>(previous_count);
|
2014-12-04 00:49:51 +01:00
|
|
|
}
|
|
|
|
|
2018-03-09 18:54:43 +01:00
|
|
|
} // namespace Kernel
|