aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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;
// -------------------------------------------