mirror of
				https://github.com/RGBCube/serenity
				synced 2025-10-31 22:32:44 +00:00 
			
		
		
		
	 79fa9765ca
			
		
	
	
		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. :^)
		
			
				
	
	
		
			32 lines
		
	
	
	
		
			913 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			32 lines
		
	
	
	
		
			913 B
		
	
	
	
		
			C++
		
	
	
	
	
	
| /*
 | |
|  * Copyright (c) 2018-2020, Andreas Kling <kling@serenityos.org>
 | |
|  *
 | |
|  * SPDX-License-Identifier: BSD-2-Clause
 | |
|  */
 | |
| 
 | |
| #pragma once
 | |
| 
 | |
| #include <Kernel/Devices/CharacterDevice.h>
 | |
| 
 | |
| namespace Kernel {
 | |
| 
 | |
| class ZeroDevice final : public CharacterDevice {
 | |
|     AK_MAKE_ETERNAL
 | |
|     friend class DeviceManagement;
 | |
| 
 | |
| public:
 | |
|     static NonnullRefPtr<ZeroDevice> must_create();
 | |
|     virtual ~ZeroDevice() override;
 | |
| 
 | |
| private:
 | |
|     ZeroDevice();
 | |
| 
 | |
|     // ^CharacterDevice
 | |
|     virtual ErrorOr<size_t> read(OpenFileDescription&, u64, UserOrKernelBuffer&, size_t) override;
 | |
|     virtual ErrorOr<size_t> write(OpenFileDescription&, u64, const UserOrKernelBuffer&, size_t) override;
 | |
|     virtual bool can_read(const OpenFileDescription&, size_t) const override;
 | |
|     virtual bool can_write(const OpenFileDescription&, size_t) const override { return true; }
 | |
|     virtual StringView class_name() const override { return "ZeroDevice"sv; }
 | |
| };
 | |
| 
 | |
| }
 |