diff options
author | Alex Auvolat <alex.auvolat@ens.fr> | 2015-03-02 23:05:08 +0100 |
---|---|---|
committer | Alex Auvolat <alex.auvolat@ens.fr> | 2015-03-02 23:05:08 +0100 |
commit | 3a0f4dd13912a3661b969c9fc516947a0113d872 (patch) | |
tree | 5c559b11d5cef8c13647a9f8836a01c360cb8b45 /src/kernel/include | |
parent | e356371f09df87ebab2d7e3d816de1147768dfa9 (diff) | |
download | kogata-3a0f4dd13912a3661b969c9fc516947a0113d872.tar.gz kogata-3a0f4dd13912a3661b969c9fc516947a0113d872.zip |
Add comment about vfs_handle_t
Diffstat (limited to 'src/kernel/include')
-rw-r--r-- | src/kernel/include/vfs.h | 3 |
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; // ------------------------------------------- |