Changeset e8f0158 in mainline for uspace/lib/c/include/sys/statfs.h
- Timestamp:
- 2013-07-11T21:17:42Z (12 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- d0a1e9b6
- Parents:
- 67632f7
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/c/include/sys/statfs.h
r67632f7 re8f0158 39 39 40 40 struct statfs { 41 shortf_type; /* type of file system */42 longf_bsize; /* fundamental file system block size */43 longf_blocks; /* total data blocks in file system */44 longf_bfree; /* free blocks in fs */41 uint32_t f_type; /* type of file system */ 42 uint32_t f_bsize; /* fundamental file system block size */ 43 uint64_t f_blocks; /* total data blocks in file system */ 44 uint64_t f_bfree; /* free blocks in fs */ 45 45 }; 46 46
Note:
See TracChangeset
for help on using the changeset viewer.