From 79fa9765ca89869d19364143989436d117974c21 Mon Sep 17 00:00:00 2001 From: Andreas Kling Date: Mon, 8 Nov 2021 00:51:39 +0100 Subject: Kernel: Replace KResult and KResultOr with Error and ErrorOr We now use AK::Error and AK::ErrorOr in both kernel and userspace! This was a slightly tedious refactoring that took a long time, so it's not unlikely that some bugs crept in. Nevertheless, it does pass basic functionality testing, and it's just real nice to finally see the same pattern in all contexts. :^) --- AK/OwnPtr.h | 17 +---------------- AK/Try.h | 2 +- 2 files changed, 2 insertions(+), 17 deletions(-) (limited to 'AK') diff --git a/AK/OwnPtr.h b/AK/OwnPtr.h index 582693d9e4..b950076efc 100644 --- a/AK/OwnPtr.h +++ b/AK/OwnPtr.h @@ -6,13 +6,9 @@ #pragma once +#include #include #include -#ifdef KERNEL -# include -#else -# include -#endif #define OWNPTR_SCRUB_BYTE 0xf0 @@ -209,16 +205,6 @@ inline OwnPtr adopt_own_if_nonnull(T* object) return {}; } -#ifdef KERNEL -template -inline Kernel::KResultOr> adopt_nonnull_own_or_enomem(T* object) -{ - auto result = adopt_own_if_nonnull(object); - if (!result) - return ENOMEM; - return result.release_nonnull(); -} -#else template inline ErrorOr> adopt_nonnull_own_or_enomem(T* object) { @@ -227,7 +213,6 @@ inline ErrorOr> adopt_nonnull_own_or_enomem(T* object) return ENOMEM; return result.release_nonnull(); } -#endif template requires(IsConstructible) inline OwnPtr try_make(Args&&... args) diff --git a/AK/Try.h b/AK/Try.h index 4efb21a5a0..15d470e86b 100644 --- a/AK/Try.h +++ b/AK/Try.h @@ -7,7 +7,7 @@ #pragma once // NOTE: This macro works with any result type that has the expected APIs. -// It's designed with AK::Result and Kernel::KResult in mind. +// It's designed with AK::Result and AK::Error in mind. #define TRY(expression) \ ({ \ -- cgit v1.2.3