From 56c6e4244a11bb8ad7c0cecd8c63766f33c7dd2e Mon Sep 17 00:00:00 2001 From: Michael Scire Date: Tue, 1 Dec 2020 16:20:20 -0800 Subject: [PATCH] kern: remove now unused SetupFor*Compare funcs --- .../libmesosphere/include/mesosphere/kern_k_thread.hpp | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/libraries/libmesosphere/include/mesosphere/kern_k_thread.hpp b/libraries/libmesosphere/include/mesosphere/kern_k_thread.hpp index 67bd30209..76318a5b7 100644 --- a/libraries/libmesosphere/include/mesosphere/kern_k_thread.hpp +++ b/libraries/libmesosphere/include/mesosphere/kern_k_thread.hpp @@ -358,11 +358,6 @@ namespace ams::kern { constexpr uintptr_t GetConditionVariableKey() const { return this->condvar_key; } constexpr uintptr_t GetAddressArbiterKey() const { return this->condvar_key; } - constexpr void SetupForConditionVariableCompare(uintptr_t cv_key, int priority) { - this->condvar_key = cv_key; - this->priority = priority; - } - constexpr void SetConditionVariable(ConditionVariableThreadTree *tree, KProcessAddress address, uintptr_t cv_key, u32 value) { this->condvar_tree = tree; this->condvar_key = cv_key; @@ -378,11 +373,6 @@ namespace ams::kern { return this->condvar_tree != nullptr; } - constexpr void SetupForAddressArbiterCompare(uintptr_t address, int priority) { - this->condvar_key = address; - this->priority = priority; - } - constexpr void SetAddressArbiter(ConditionVariableThreadTree *tree, uintptr_t address) { this->condvar_tree = tree; this->condvar_key = address;