mirror of
https://github.com/RGBCube/serenity
synced 2025-05-31 10:38:11 +00:00

After reading a bunch of POSIX specs, I've learned that a file descriptor is the number that refers to a file description, not the description itself. So this patch renames FileDescriptor to FileDescription, and Process now has FileDescription* file_description(int fd).
30 lines
521 B
C++
30 lines
521 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&, byte* 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 byte*, ssize_t size)
|
|
{
|
|
return min(PAGE_SIZE, size);
|
|
}
|
|
|