mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-22 15:40:19 +00:00
28 lines
470 B
C++
28 lines
470 B
C++
#include "CharacterDevice.h"
|
|
#include <LibC/errno_numbers.h>
|
|
|
|
Device::Device(unsigned major, unsigned minor)
|
|
: m_major(major)
|
|
, m_minor(minor)
|
|
{
|
|
VFS::the().register_device(*this);
|
|
}
|
|
|
|
Device::~Device()
|
|
{
|
|
VFS::the().unregister_device(*this);
|
|
}
|
|
|
|
KResultOr<Retained<FileDescriptor>> Device::open(int options)
|
|
{
|
|
return VFS::the().open(*this, options);
|
|
}
|
|
|
|
void Device::close()
|
|
{
|
|
}
|
|
|
|
int Device::ioctl(Process&, unsigned, unsigned)
|
|
{
|
|
return -ENOTTY;
|
|
}
|