X-Git-Url: https://codewiz.org/gitweb?a=blobdiff_plain;f=bertos%2Fkern%2Fkfile.h;h=4f1d8fc85f9b70ce367fea015b5786aee72be246;hb=e76058eccdb846a6a9f9da7cac4f22f6e41a7afc;hp=609c8d635030edc777a12160ff9e364c66fe6f09;hpb=3cbd165e74aa527dc81b1ffd0e711ab95563f66c;p=bertos.git diff --git a/bertos/kern/kfile.h b/bertos/kern/kfile.h index 609c8d63..4f1d8fc8 100644 --- a/bertos/kern/kfile.h +++ b/bertos/kern/kfile.h @@ -178,7 +178,9 @@ typedef void (*ClearErrFunc_t) (struct KFile *fd); /** * Context data for callback functions which operate on * pseudo files. - * \note If you change interface, remember to add corresponding access function. + * + * \note Remember to add the corresponding accessor functions + * when extending this interface. */ typedef struct KFile { @@ -190,11 +192,11 @@ typedef struct KFile FlushFunc_t flush; ErrorFunc_t error; ClearErrFunc_t clearerr; - DB(id_t _type); ///< Used to keep trace, at runtime, of obj type. + DB(id_t _type); ///< Used to keep track, at runtime, of the class type. /* NOTE: these must _NOT_ be size_t on 16bit CPUs! */ kfile_off_t seek_pos; - kfile_size_t size; + kfile_size_t size; // FIXME: should be kfile_off_t } KFile; /**