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>
|
2019-12-22 23:37:17 +00:00
|
|
|
#include <boost/serialization/export.hpp>
|
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-12-22 23:37:17 +00:00
|
|
|
explicit Semaphore();
|
2019-03-23 20:04:19 +00:00
|
|
|
~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
|
|
|
|
2019-04-11 20:30:52 +00:00
|
|
|
static constexpr 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
|
|
|
|
Port various minor changes from yuzu PRs (#4725)
* common/thread: Remove unused functions
Many of these functions are carried over from Dolphin (where they aren't
used anymore). Given these have no use (and we really shouldn't be
screwing around with OS-specific thread scheduler handling from the
emulator, these can be removed.
The function for setting the thread name is left, however, since it can
have debugging utility usages.
* input_common/sdl: Use a type alias to shorten declaration of GetPollers
Just makes the definitions a little bit more tidy.
* input_common/sdl: Correct return values within implementations of GetPollers()
In both cases, we weren't actually returning anything, which is
undefined behavior.
* yuzu/debugger/graphics_surface: Fill in missing surface format listings
Fills in the missing surface types that were marked as unknown. The
order corresponds with the TextureFormat enum within
video_core/texture.h.
We also don't need to all of these strings as translatable (only the
first string, as it's an English word).
* yuzu/debugger/graphics_surface: Clean up connection overload deduction
We can utilize qOverload with the signal connections to make the
function deducing a little less ugly.
* yuzu/debugger/graphics_surface: Tidy up SaveSurface
- Use QStringLiteral where applicable.
- Use const where applicable
- Remove unnecessary precondition check (we already assert the pixbuf
being non null)
* yuzu/debugger/graphics_surface: Display error messages for file I/O errors
* core: Add missing override specifiers where applicable
Applies the override specifier where applicable. In the case of
destructors that are defaulted in their definition, they can
simply be removed.
This also removes the unnecessary inclusions being done in audin_u and
audrec_u, given their close proximity.
* kernel/thread: Make parameter of GetWaitObjectIndex() const qualified
The pointed to member is never actually modified, so it can be made
const.
* kernel/thread: Avoid sign conversion within GetCommandBufferAddress()
Previously this was performing a u64 + int sign conversion. When dealing
with addresses, we should generally be keeping the arithmetic in the
same signedness type.
This also gets rid of the static lifetime of the constant, as there's no
need to make a trivial type like this potentially live for the entire
duration of the program.
* kernel/codeset: Make CodeSet's memory data member a regular std::vector
The use of a shared_ptr is an implementation detail of the VMManager
itself when mapping memory. Because of that, we shouldn't require all
users of the CodeSet to have to allocate the shared_ptr ahead of time.
It's intended that CodeSet simply pass in the required direct data, and
that the memory manager takes care of it from that point on.
This means we just do the shared pointer allocation in a single place,
when loading modules, as opposed to in each loader.
* kernel/wait_object: Make ShouldWait() take thread members by pointer-to-const
Given this is intended as a querying function, it doesn't make sense to
allow the implementer to modify the state of the given thread.
2019-05-01 12:28:49 +00:00
|
|
|
bool ShouldWait(const Thread* thread) const override;
|
2017-01-01 21:53:22 +00:00
|
|
|
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);
|
2019-08-10 23:20:09 +00:00
|
|
|
|
|
|
|
private:
|
|
|
|
friend class boost::serialization::access;
|
|
|
|
template <class Archive>
|
|
|
|
void serialize(Archive& ar, const unsigned int file_version)
|
|
|
|
{
|
|
|
|
ar & boost::serialization::base_object<WaitObject>(*this);
|
|
|
|
ar & max_count;
|
|
|
|
ar & available_count;
|
|
|
|
ar & name;
|
|
|
|
}
|
2015-01-11 15:53:11 +00:00
|
|
|
};
|
2014-12-13 01:46:52 +00:00
|
|
|
|
2018-03-09 17:54:43 +00:00
|
|
|
} // namespace Kernel
|
2019-12-22 23:37:17 +00:00
|
|
|
|
|
|
|
BOOST_CLASS_EXPORT_KEY(Kernel::Semaphore)
|