mirror of
https://github.com/RGBCube/serenity
synced 2025-05-19 20:25:07 +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).
28 lines
488 B
C++
28 lines
488 B
C++
#include <Kernel/Devices/DebugLogDevice.h>
|
|
#include <Kernel/IO.h>
|
|
|
|
static DebugLogDevice* s_the;
|
|
|
|
DebugLogDevice& DebugLogDevice::the()
|
|
{
|
|
ASSERT(s_the);
|
|
return *s_the;
|
|
}
|
|
|
|
DebugLogDevice::DebugLogDevice()
|
|
: CharacterDevice(1, 18)
|
|
{
|
|
s_the = this;
|
|
}
|
|
|
|
DebugLogDevice::~DebugLogDevice()
|
|
{
|
|
}
|
|
|
|
ssize_t DebugLogDevice::write(FileDescription&, const byte* data, ssize_t data_size)
|
|
{
|
|
for (int i = 0; i < data_size; ++i)
|
|
IO::out8(0xe9, data[i]);
|
|
return data_size;
|
|
}
|
|
|