X-Git-Url: http://www.aleph1.co.uk/gitweb/?p=yaffs2.git;a=blobdiff_plain;f=direct%2Fyaffsfs.h;h=8a7cb811b186eb9a97647d46f81325ce6fbc5ae5;hp=1c0d316a4fafaf598f793a8aba0b55f1b9c3dfd0;hb=ea3c314412ed2ecee3f47b576d5759267173e9c0;hpb=40c386c7a14ebfa8afc14562f3b33a416831b26d diff --git a/direct/yaffsfs.h b/direct/yaffsfs.h index 1c0d316..8a7cb81 100644 --- a/direct/yaffsfs.h +++ b/direct/yaffsfs.h @@ -114,6 +114,10 @@ #define ENOTEMPTY 39 #endif +#ifndef ENAMETOOLONG +#define ENAMETOOLONG 36 +#endif + #ifndef ENOMEM #define ENOMEM 12 #endif @@ -216,7 +220,9 @@ struct yaffs_stat{ int yaffs_open(const YCHAR *path, int oflag, int mode) ; int yaffs_close(int fd) ; -int yaffs_flush(int fd) ; +int yaffs_fsync(int fd) ; +int yaffs_fdatasync(int fd) ; +int yaffs_flush(int fd) ; /* same as yaffs_fsync() */ int yaffs_access(const YCHAR *path, int amode); @@ -272,6 +278,9 @@ int yaffs_mknod(const YCHAR *pathname, mode_t mode, dev_t dev); loff_t yaffs_freespace(const YCHAR *path); loff_t yaffs_totalspace(const YCHAR *path); +int yaffs_inodecount(const YCHAR *path); + + void yaffs_initialise(yaffsfs_DeviceConfiguration *configList); int yaffs_StartUp(void);