diff options
author | Alexis211 <alexis211@gmail.com> | 2009-11-15 13:17:58 +0100 |
---|---|---|
committer | Alexis211 <alexis211@gmail.com> | 2009-11-15 13:17:58 +0100 |
commit | 21bfca4ad4b84768f05eb4fa2bc0ad7a76b6c536 (patch) | |
tree | 7e68b92e80aadec75b5263bd9058c8336d29b77b /Source/Kernel/FileSystems/RamFS/RamFS.class.h | |
parent | e48f1166ae7402f973ea4aab8e53c7612459048c (diff) | |
download | Melon-21bfca4ad4b84768f05eb4fa2bc0ad7a76b6c536.tar.gz Melon-21bfca4ad4b84768f05eb4fa2bc0ad7a76b6c536.zip |
Mount points seem to work, mostly owing to dark magic.
Diffstat (limited to 'Source/Kernel/FileSystems/RamFS/RamFS.class.h')
-rw-r--r-- | Source/Kernel/FileSystems/RamFS/RamFS.class.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/Kernel/FileSystems/RamFS/RamFS.class.h b/Source/Kernel/FileSystems/RamFS/RamFS.class.h index 1d60796..5ce85f1 100644 --- a/Source/Kernel/FileSystems/RamFS/RamFS.class.h +++ b/Source/Kernel/FileSystems/RamFS/RamFS.class.h @@ -17,10 +17,10 @@ struct initrd_file_header { class RamFS : public FileSystem { private: - ~RamFS(); + virtual ~RamFS(); RamFS(const RamFS& other); RamFS(); - bool unmount(); //TO BE USED ONLY BY VFS::UNMOUNT (when will exist...) + bool unmount(); u32int m_maxSize; u32int m_usedSize; |