mirror of
				https://github.com/RGBCube/serenity
				synced 2025-10-31 21:12:43 +00:00 
			
		
		
		
	 4bfd6e41b9
			
		
	
	
		4bfd6e41b9
		
	
	
	
	
		
			
			This makes for nicer handling of errors compared to checking whether a RefPtr is null. Additionally, this will give way to return different types of errors in the future.
		
			
				
	
	
		
			33 lines
		
	
	
	
		
			862 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			33 lines
		
	
	
	
		
			862 B
		
	
	
	
		
			C++
		
	
	
	
	
	
| /*
 | |
|  * Copyright (c) 2018-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 SharedInodeVMObject final : public InodeVMObject {
 | |
|     AK_MAKE_NONMOVABLE(SharedInodeVMObject);
 | |
| 
 | |
| public:
 | |
|     static RefPtr<SharedInodeVMObject> try_create_with_inode(Inode&);
 | |
|     virtual KResultOr<NonnullRefPtr<VMObject>> try_clone() override;
 | |
| 
 | |
| private:
 | |
|     virtual bool is_shared_inode() const override { return true; }
 | |
| 
 | |
|     explicit SharedInodeVMObject(Inode&, size_t);
 | |
|     explicit SharedInodeVMObject(SharedInodeVMObject const&);
 | |
| 
 | |
|     virtual StringView class_name() const override { return "SharedInodeVMObject"sv; }
 | |
| 
 | |
|     SharedInodeVMObject& operator=(SharedInodeVMObject const&) = delete;
 | |
| };
 | |
| 
 | |
| }
 |