mirror of
https://github.com/RGBCube/serenity
synced 2025-05-18 10:05:07 +00:00

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;
|
|
}
|
|
|