[Overview][Constants][Types] |
Record describing a file system in the baseunix.fpstatfs call.
Source position: ptypes.inc line 139
type TStatfs = packed record |
||
fstype: cint; |
|
File system type |
bsize: cint; |
|
Block size |
blocks: clong; |
|
Total number of blocks |
bfree: clong; |
|
Number of free blocks |
bavail: clong; |
|
Number of available blocks |
files: clong; |
|
Number of files |
ffree: clong; |
|
? |
fsid: array [0..1] of cint; |
|
? |
namelen: clong; |
|
Max name length for files. |
spare: array [0..5] of clong; |
|
Pad bytes. Do not use. |
end; |