aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorAlex Auvolat <alex.auvolat@ens.fr>2015-03-02 23:05:08 +0100
committerAlex Auvolat <alex.auvolat@ens.fr>2015-03-02 23:05:08 +0100
commit3a0f4dd13912a3661b969c9fc516947a0113d872 (patch)
tree5c559b11d5cef8c13647a9f8836a01c360cb8b45 /src
parente356371f09df87ebab2d7e3d816de1147768dfa9 (diff)
downloadkogata-3a0f4dd13912a3661b969c9fc516947a0113d872.tar.gz
kogata-3a0f4dd13912a3661b969c9fc516947a0113d872.zip
Add comment about vfs_handle_t
Diffstat (limited to 'src')
-rw-r--r--src/kernel/include/vfs.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/kernel/include/vfs.h b/src/kernel/include/vfs.h
index 6372850..a34681b 100644
--- a/src/kernel/include/vfs.h
+++ b/src/kernel/include/vfs.h
@@ -52,6 +52,9 @@ typedef struct fs_handle {
int refs;
int mode;
+
+ // TODO : keep a position in the file for sequential-append access and such
+ // (as it is this structure is quite useless)
} fs_handle_t;
// -------------------------------------------