mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-12-28 13:43:45 +03:00
27f699ef0c
These types can be picked up by including <AK/Types.h>: * u8, u16, u32, u64 (unsigned) * i8, i16, i32, i64 (signed)
30 lines
516 B
C++
30 lines
516 B
C++
#include "ZeroDevice.h"
|
|
#include <AK/StdLibExtras.h>
|
|
#include <AK/kstdio.h>
|
|
|
|
ZeroDevice::ZeroDevice()
|
|
: CharacterDevice(1, 5)
|
|
{
|
|
}
|
|
|
|
ZeroDevice::~ZeroDevice()
|
|
{
|
|
}
|
|
|
|
bool ZeroDevice::can_read(FileDescription&) const
|
|
{
|
|
return true;
|
|
}
|
|
|
|
ssize_t ZeroDevice::read(FileDescription&, u8* buffer, ssize_t size)
|
|
{
|
|
ssize_t count = min(PAGE_SIZE, size);
|
|
memset(buffer, 0, (size_t)count);
|
|
return count;
|
|
}
|
|
|
|
ssize_t ZeroDevice::write(FileDescription&, const u8*, ssize_t size)
|
|
{
|
|
return min(PAGE_SIZE, size);
|
|
}
|