Created
September 3, 2018 06:08
-
-
Save naota/1b945b7172bf97560cf9bf15aa73f5ce to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
struct statfs { | |
__fsword_t f_type; /* Type of filesystem (see below) */ | |
__fsword_t f_bsize; /* Optimal transfer block size */ | |
fsblkcnt_t f_blocks; /* Total data blocks in filesystem */ | |
fsblkcnt_t f_bfree; /* Free blocks in filesystem */ | |
fsblkcnt_t f_bavail; /* Free blocks available to | |
unprivileged user */ | |
fsfilcnt_t f_files; /* Total file nodes in filesystem */ | |
fsfilcnt_t f_ffree; /* Free file nodes in filesystem */ | |
fsid_t f_fsid; /* Filesystem ID */ | |
__fsword_t f_namelen; /* Maximum length of filenames */ | |
__fsword_t f_frsize; /* Fragment size (since Linux 2.6) */ | |
__fsword_t f_flags; /* Mount flags of filesystem | |
(since Linux 2.6.36) */ | |
__fsword_t f_spare[xxx]; | |
/* Padding bytes reserved for future use */ | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment