mirror of
https://github.com/RGBCube/serenity
synced 2025-07-26 07:37:35 +00:00
Kernel: Replace KResult and KResultOr<T> with Error and ErrorOr<T>
We now use AK::Error and AK::ErrorOr<T> 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. :^)
This commit is contained in:
parent
7ee10c6926
commit
79fa9765ca
262 changed files with 2415 additions and 2600 deletions
|
@ -309,7 +309,7 @@ UNMAP_AFTER_INIT bool APIC::init_bsp()
|
|||
UNMAP_AFTER_INIT static NonnullOwnPtr<Memory::Region> create_identity_mapped_region(PhysicalAddress paddr, size_t size)
|
||||
{
|
||||
auto maybe_vmobject = Memory::AnonymousVMObject::try_create_for_physical_range(paddr, size);
|
||||
// FIXME: Would be nice to be able to return a KResultOr from here.
|
||||
// FIXME: Would be nice to be able to return a ErrorOr from here.
|
||||
VERIFY(!maybe_vmobject.is_error());
|
||||
|
||||
auto region_or_error = MM.allocate_kernel_region_with_vmobject(
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue