2018-10-13 21:59:22 -03:00
|
|
|
#include "CharacterDevice.h"
|
|
|
|
|
|
|
|
|
|
CharacterDevice::~CharacterDevice()
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
2018-11-07 08:37:54 -02:00
|
|
|
RetainPtr<FileDescriptor> CharacterDevice::open(int options)
|
2018-10-30 09:59:29 -03:00
|
|
|
{
|
2018-11-15 11:43:10 -02:00
|
|
|
return VFS::the().open(*this, options);
|
2018-10-30 09:59:29 -03:00
|
|
|
}
|