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 <queue>
|
|
|
|
#include <string>
|
2014-12-03 23:49:51 +00:00
|
|
|
#include "common/common_types.h"
|
|
|
|
#include "core/hle/kernel/kernel.h"
|
|
|
|
|
|
|
|
namespace Kernel {
|
|
|
|
|
2015-01-27 04:40:21 +00:00
|
|
|
class Semaphore final : public WaitObject {
|
2015-01-11 15:53:11 +00:00
|
|
|
public:
|
|
|
|
/**
|
|
|
|
* Creates a semaphore.
|
|
|
|
* @param initial_count Number of slots reserved for other threads
|
|
|
|
* @param max_count Maximum number of slots the semaphore can have
|
|
|
|
* @param name Optional name of semaphore
|
|
|
|
* @return The created semaphore
|
|
|
|
*/
|
|
|
|
static ResultVal<SharedPtr<Semaphore>> Create(s32 initial_count, s32 max_count,
|
2016-09-18 00:38:01 +00:00
|
|
|
std::string name = "Unknown");
|
2015-01-11 15:53:11 +00:00
|
|
|
|
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
|
|
|
|
|
|
|
bool ShouldWait() override;
|
|
|
|
void Acquire() override;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* 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);
|
|
|
|
|
|
|
|
private:
|
2015-02-01 00:56:59 +00:00
|
|
|
Semaphore();
|
|
|
|
~Semaphore() override;
|
2015-01-11 15:53:11 +00:00
|
|
|
};
|
2014-12-13 01:46:52 +00:00
|
|
|
|
2014-12-03 23:49:51 +00:00
|
|
|
} // namespace
|