From 53aae17b641e551bc03cb736561fbbb0692eb01a Mon Sep 17 00:00:00 2001 From: Michael Scire Date: Wed, 2 Dec 2020 04:07:01 -0800 Subject: [PATCH] kern: allow non-inline GetObjectForIpc --- .../libmesosphere/include/mesosphere/kern_k_handle_table.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libraries/libmesosphere/include/mesosphere/kern_k_handle_table.hpp b/libraries/libmesosphere/include/mesosphere/kern_k_handle_table.hpp index 5cbbaf489..650a39d67 100644 --- a/libraries/libmesosphere/include/mesosphere/kern_k_handle_table.hpp +++ b/libraries/libmesosphere/include/mesosphere/kern_k_handle_table.hpp @@ -160,7 +160,7 @@ namespace ams::kern { return this->template GetObjectWithoutPseudoHandle(handle); } - ALWAYS_INLINE KScopedAutoObject GetObjectForIpcWithoutPseudoHandle(ams::svc::Handle handle) const { + KScopedAutoObject GetObjectForIpcWithoutPseudoHandle(ams::svc::Handle handle) const { /* Lock and look up in table. */ KScopedDisableDispatch dd; KScopedSpinLock lk(this->lock);