41f13456c0
* tests: add Sanity test for SplitFilename83 fix test fix test * disable `C4715:not all control paths return a value` for nihstro includes nihstro: no warn * Chore: Enable warnings as errors on msvc + fix warnings fixes some more warnings clang-format * more fixes * Externals: Add target_compile_options `/W0` nihstro-headers and ... Revert "disable `C4715:not all control paths return a value` for nihstro includes" This reverts commit 606d79b55d3044b744fb835025b8eb0f4ea5b757. * src\citra\config.cpp: ReadSetting: simplify type casting * settings.cpp: Get*Name: remove superflous logs
69 lines
1.7 KiB
C++
69 lines
1.7 KiB
C++
// Copyright 2014 Citra Emulator Project
|
|
// Licensed under GPLv2 or any later version
|
|
// Refer to the license.txt file included.
|
|
|
|
#pragma once
|
|
|
|
#include <boost/serialization/base_object.hpp>
|
|
#include <boost/serialization/export.hpp>
|
|
#include <boost/serialization/string.hpp>
|
|
#include "common/common_types.h"
|
|
#include "core/hle/kernel/object.h"
|
|
#include "core/hle/kernel/wait_object.h"
|
|
|
|
namespace Kernel {
|
|
|
|
class Event final : public WaitObject {
|
|
public:
|
|
explicit Event(KernelSystem& kernel);
|
|
~Event() override;
|
|
|
|
std::string GetTypeName() const override {
|
|
return "Event";
|
|
}
|
|
std::string GetName() const override {
|
|
return name;
|
|
}
|
|
void SetName(const std::string& name_) {
|
|
name = name_;
|
|
}
|
|
|
|
static constexpr HandleType HANDLE_TYPE = HandleType::Event;
|
|
HandleType GetHandleType() const override {
|
|
return HANDLE_TYPE;
|
|
}
|
|
|
|
ResetType GetResetType() const {
|
|
return reset_type;
|
|
}
|
|
|
|
bool ShouldWait(const Thread* thread) const override;
|
|
void Acquire(Thread* thread) override;
|
|
|
|
void WakeupAllWaitingThreads() override;
|
|
|
|
void Signal();
|
|
void Clear();
|
|
|
|
private:
|
|
ResetType reset_type; ///< Current ResetType
|
|
|
|
bool signaled; ///< Whether the event has already been signaled
|
|
std::string name; ///< Name of event (optional)
|
|
|
|
friend class KernelSystem;
|
|
|
|
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& reset_type;
|
|
ar& signaled;
|
|
ar& name;
|
|
}
|
|
};
|
|
|
|
} // namespace Kernel
|
|
|
|
BOOST_CLASS_EXPORT_KEY(Kernel::Event)
|
|
CONSTRUCT_KERNEL_OBJECT(Kernel::Event)
|