summaryrefslogtreecommitdiff
path: root/Kernel/File.cpp
blob: 7de0f240f81ab9495542f4cb0e1638f7eb77aaea (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
#include <Kernel/File.h>
#include <Kernel/FileSystem/FileDescriptor.h>

File::File()
{
}

File::~File()
{
}

KResultOr<Retained<FileDescriptor>> File::open(int options)
{
    UNUSED_PARAM(options);
    return FileDescriptor::create(this);
}

void File::close()
{
}

int File::ioctl(FileDescriptor&, unsigned, unsigned)
{
    return -ENOTTY;
}

KResultOr<Region*> File::mmap(Process&, LinearAddress, size_t, size_t, int)
{
    return KResult(-ENODEV);
}