Skip to content
Snippets Groups Projects
Unverified Commit c5262b18 authored by Mat M's avatar Mat M Committed by GitHub
Browse files

Merge pull request #1984 from ogniK5377/remove-pulse

Removed pulse event type
parents de4f931d 4f41fd84
No related branches found
No related tags found
No related merge requests found
...@@ -36,7 +36,6 @@ enum class HandleType : u32 { ...@@ -36,7 +36,6 @@ enum class HandleType : u32 {
enum class ResetType { enum class ResetType {
OneShot, ///< Reset automatically on object acquisition OneShot, ///< Reset automatically on object acquisition
Sticky, ///< Never reset automatically Sticky, ///< Never reset automatically
Pulse, ///< Reset automatically on wakeup
}; };
class Object : NonCopyable { class Object : NonCopyable {
......
...@@ -46,9 +46,6 @@ ResultCode ReadableEvent::Reset() { ...@@ -46,9 +46,6 @@ ResultCode ReadableEvent::Reset() {
void ReadableEvent::WakeupAllWaitingThreads() { void ReadableEvent::WakeupAllWaitingThreads() {
WaitObject::WakeupAllWaitingThreads(); WaitObject::WakeupAllWaitingThreads();
if (reset_type == ResetType::Pulse)
signaled = false;
} }
} // namespace Kernel } // namespace Kernel
...@@ -68,9 +68,6 @@ void Timer::Clear() { ...@@ -68,9 +68,6 @@ void Timer::Clear() {
void Timer::WakeupAllWaitingThreads() { void Timer::WakeupAllWaitingThreads() {
WaitObject::WakeupAllWaitingThreads(); WaitObject::WakeupAllWaitingThreads();
if (reset_type == ResetType::Pulse)
signaled = false;
} }
void Timer::Signal(int cycles_late) { void Timer::Signal(int cycles_late) {
......
...@@ -182,8 +182,6 @@ QString WaitTreeWaitObject::GetResetTypeQString(Kernel::ResetType reset_type) { ...@@ -182,8 +182,6 @@ QString WaitTreeWaitObject::GetResetTypeQString(Kernel::ResetType reset_type) {
return tr("one shot"); return tr("one shot");
case Kernel::ResetType::Sticky: case Kernel::ResetType::Sticky:
return tr("sticky"); return tr("sticky");
case Kernel::ResetType::Pulse:
return tr("pulse");
} }
UNREACHABLE(); UNREACHABLE();
return {}; return {};
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment