From dc7862882fc8bb20e6fdf20b37c60ea7df562857 Mon Sep 17 00:00:00 2001 From: Michael Scire Date: Wed, 7 Apr 2021 15:30:36 -0700 Subject: [PATCH] kern: who needs __purecall? --- .../include/mesosphere/kern_k_synchronization_object.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libraries/libmesosphere/include/mesosphere/kern_k_synchronization_object.hpp b/libraries/libmesosphere/include/mesosphere/kern_k_synchronization_object.hpp index ea340a155..1465bbe69 100644 --- a/libraries/libmesosphere/include/mesosphere/kern_k_synchronization_object.hpp +++ b/libraries/libmesosphere/include/mesosphere/kern_k_synchronization_object.hpp @@ -45,7 +45,7 @@ namespace ams::kern { static Result Wait(s32 *out_index, KSynchronizationObject **objects, const s32 num_objects, s64 timeout); public: virtual void Finalize() override; - virtual bool IsSignaled() const = 0; + virtual bool IsSignaled() const { AMS_INFINITE_LOOP(); } virtual void DumpWaiters(); };