mirror of
				https://github.com/RGBCube/serenity
				synced 2025-10-31 21:02:44 +00:00 
			
		
		
		
	 8cbb7f101f
			
		
	
	
		8cbb7f101f
		
	
	
	
	
		
			
			This will allow us to implement different behaviors depending on the role of the descriptor a File is being accessed through.
		
			
				
	
	
		
			33 lines
		
	
	
	
		
			574 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			33 lines
		
	
	
	
		
			574 B
		
	
	
	
		
			C++
		
	
	
	
	
	
| #include "FullDevice.h"
 | |
| #include <LibC/errno_numbers.h>
 | |
| #include <AK/StdLibExtras.h>
 | |
| #include <AK/kstdio.h>
 | |
| 
 | |
| FullDevice::FullDevice()
 | |
|     : CharacterDevice(1, 7)
 | |
| {
 | |
| }
 | |
| 
 | |
| FullDevice::~FullDevice()
 | |
| {
 | |
| }
 | |
| 
 | |
| bool FullDevice::can_read(FileDescriptor&) const
 | |
| {
 | |
|     return true;
 | |
| }
 | |
| 
 | |
| ssize_t FullDevice::read(FileDescriptor&, byte* buffer, ssize_t size)
 | |
| {
 | |
|     ssize_t count = min(PAGE_SIZE, size);
 | |
|     memset(buffer, 0, (size_t)count);
 | |
|     return count;
 | |
| }
 | |
| 
 | |
| ssize_t FullDevice::write(FileDescriptor&, const byte*, ssize_t size)
 | |
| {
 | |
|     if (size == 0)
 | |
|         return 0;
 | |
|     return -ENOSPC;
 | |
| }
 | |
| 
 |