summaryrefslogtreecommitdiff
path: root/Source/Kernel/VFS
diff options
context:
space:
mode:
authorAlexis211 <alexis211@gmail.com>2009-10-17 16:40:56 +0200
committerAlexis211 <alexis211@gmail.com>2009-10-17 16:40:56 +0200
commit9520a1a101b264abe700c3f7753f5f55bba4c681 (patch)
tree2d73552c689c4de39b28c0e9930bc135b199a273 /Source/Kernel/VFS
parent45fcf4cc7ddacd93df2dd4d88ad31f6061e8d4a8 (diff)
downloadMelon-9520a1a101b264abe700c3f7753f5f55bba4c681.tar.gz
Melon-9520a1a101b264abe700c3f7753f5f55bba4c681.zip
Each thread now has a kernel stack and an user stack
Diffstat (limited to 'Source/Kernel/VFS')
-rw-r--r--Source/Kernel/VFS/VFS.ns.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/Kernel/VFS/VFS.ns.h b/Source/Kernel/VFS/VFS.ns.h
index 1021d7c..94ddad9 100644
--- a/Source/Kernel/VFS/VFS.ns.h
+++ b/Source/Kernel/VFS/VFS.ns.h
@@ -8,7 +8,7 @@ typedef FileSystem* (* mountcallback)(Partition* partition);
namespace VFS {
void registerMountCallback(mountcallback mcb);
- bool mount(Partition* partition, DirectoryNode mountpoint);
+ bool mount(Partition* partition, DirectoryNode *mountpoint);
bool setRootNode(DirectoryNode* root);
DirectoryNode* getRootNode();