mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-14 22:31:29 +03:00
29 lines
470 B
C++
29 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;
|
|
}
|