Changeset 9dc6083 in mainline for uspace/lib/c/include/vfs/vfs.h


Ignore:
Timestamp:
2013-07-06T15:53:01Z (11 years ago)
Author:
Manuele Conti <conti.ma@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
11baebb
Parents:
66366470
Message:

Implement statfs operation.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/lib/c/include/vfs/vfs.h

    r66366470 r9dc6083  
    4949};
    5050
    51 struct statfs {
    52         short   f_type;     /* type of file system  */
    53         long    f_bsize;    /* fundamental file system block size */
    54         long    f_blocks;   /* total data blocks in file system */
    55         long    f_bfree;    /* free blocks in fs */
    56 };
    57 
    5851
    5952extern char *absolutize(const char *, size_t *);
     
    7063extern async_exch_t *vfs_exchange_begin(void);
    7164extern void vfs_exchange_end(async_exch_t *);
    72 extern int statfs(const char *path, struct statfs *buf);
    7365#endif
    7466
Note: See TracChangeset for help on using the changeset viewer.