2014-12-03 23:49:51 +00:00
|
|
|
// Copyright 2014 Citra Emulator Project
|
2014-12-17 05:38:14 +00:00
|
|
|
// Licensed under GPLv2 or any later version
|
2014-12-03 23:49:51 +00:00
|
|
|
// Refer to the license.txt file included.
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
2015-01-11 15:53:11 +00:00
|
|
|
#include <string>
|
2018-03-09 17:54:43 +00:00
|
|
|
#include <queue>
|
2014-12-03 23:49:51 +00:00
|
|
|
#include "common/common_types.h"
|
2018-08-02 02:40:00 +00:00
|
|
|
#include "core/hle/kernel/object.h"
|
2017-05-29 22:45:30 +00:00
|
|
|
#include "core/hle/kernel/wait_object.h"
|
2017-05-29 23:45:42 +00:00
|
|
|
#include "core/hle/result.h"
|
2014-12-03 23:49:51 +00:00
|
|
|
|
|
|
|
namespace Kernel {
|
|
|
|
|
2015-01-27 04:40:21 +00:00
|
|
|
class Semaphore final : public WaitObject {
|
2015-01-11 15:53:11 +00:00
|
|
|
public:
|
2019-03-23 20:04:19 +00:00
|
|
|
explicit Semaphore(KernelSystem& kernel);
|
|
|
|
~Semaphore() override;
|
|
|
|
|
2016-09-18 00:38:01 +00:00
|
|
|
std::string GetTypeName() const override {
|
|
|
|
return "Semaphore";
|
|
|
|
}
|
|
|
|
std::string GetName() const override {
|
|
|
|
return name;
|
|
|
|
}
|
2015-01-11 15:53:11 +00:00
|
|
|
|
|
|
|
static const HandleType HANDLE_TYPE = HandleType::Semaphore;
|
2016-09-18 00:38:01 +00:00
|
|
|
HandleType GetHandleType() const override {
|
|
|
|
return HANDLE_TYPE;
|
|
|
|
}
|
2015-01-11 15:53:11 +00:00
|
|
|
|
2016-09-18 00:38:01 +00:00
|
|
|
s32 max_count; ///< Maximum number of simultaneous holders the semaphore can have
|
|
|
|
s32 available_count; ///< Number of free slots left in the semaphore
|
|
|
|
std::string name; ///< Name of semaphore (optional)
|
2015-01-11 15:53:11 +00:00
|
|
|
|
2017-01-01 21:53:22 +00:00
|
|
|
bool ShouldWait(Thread* thread) const override;
|
|
|
|
void Acquire(Thread* thread) override;
|
2015-01-11 15:53:11 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Releases a certain number of slots from a semaphore.
|
|
|
|
* @param release_count The number of slots to release
|
|
|
|
* @return The number of free slots the semaphore had before this call
|
|
|
|
*/
|
|
|
|
ResultVal<s32> Release(s32 release_count);
|
|
|
|
};
|
2014-12-13 01:46:52 +00:00
|
|
|
|
2018-03-09 17:54:43 +00:00
|
|
|
} // namespace Kernel
|