driver/filesystem: add Ioctl()
This commit is contained in:
parent
699c1fc8ae
commit
902ee97d71
@ -250,6 +250,9 @@ public:
|
|||||||
|
|
||||||
// Close an open directory.
|
// Close an open directory.
|
||||||
virtual int Closedir(const char *path, OpenFile *file) { return -ENOSYS; }
|
virtual int Closedir(const char *path, OpenFile *file) { return -ENOSYS; }
|
||||||
|
|
||||||
|
// Ioctl (arbitrary action performed on the opened file)
|
||||||
|
virtual int Ioctl(const char *path, uintptr_t cmd, void *arg, OpenFile *file) { return -ENOSYS; }
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user