mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-01-24 02:03:06 -05:00
79fa9765ca
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. :^)
35 lines
928 B
C++
35 lines
928 B
C++
/*
|
|
* Copyright (c) 2020, Andreas Kling <kling@serenityos.org>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <AK/Bitmap.h>
|
|
#include <Kernel/Memory/InodeVMObject.h>
|
|
#include <Kernel/UnixTypes.h>
|
|
|
|
namespace Kernel::Memory {
|
|
|
|
class PrivateInodeVMObject final : public InodeVMObject {
|
|
AK_MAKE_NONMOVABLE(PrivateInodeVMObject);
|
|
|
|
public:
|
|
virtual ~PrivateInodeVMObject() override;
|
|
|
|
static ErrorOr<NonnullRefPtr<PrivateInodeVMObject>> try_create_with_inode(Inode&);
|
|
virtual ErrorOr<NonnullRefPtr<VMObject>> try_clone() override;
|
|
|
|
private:
|
|
virtual bool is_private_inode() const override { return true; }
|
|
|
|
explicit PrivateInodeVMObject(Inode&, size_t);
|
|
explicit PrivateInodeVMObject(PrivateInodeVMObject const&);
|
|
|
|
virtual StringView class_name() const override { return "PrivateInodeVMObject"sv; }
|
|
|
|
PrivateInodeVMObject& operator=(PrivateInodeVMObject const&) = delete;
|
|
};
|
|
|
|
}
|