mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-10 13:00:29 +03:00
35 lines
591 B
C++
35 lines
591 B
C++
#include "FullDevice.h"
|
|
#include "Limits.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(Process&) const
|
|
{
|
|
return true;
|
|
}
|
|
|
|
ssize_t FullDevice::read(Process&, byte* buffer, size_t bufferSize)
|
|
{
|
|
size_t count = min(GoodBufferSize, bufferSize);
|
|
memset(buffer, 0, count);
|
|
return count;
|
|
}
|
|
|
|
ssize_t FullDevice::write(Process&, const byte*, size_t bufferSize)
|
|
{
|
|
if (bufferSize == 0)
|
|
return 0;
|
|
return -ENOSPC;
|
|
}
|
|
|