Why do the statfs() and statvfs() calls both exist when they're so similar?
Under what circumstances would I prefer one over the other?
|
1
|
|
|
|
|
|
Hysterical RaisinsErr, "historical reasons". Originally 4.4BSD defined a
As they all return slightly different structures, later ones to come along can't replace the first. In general you should use |
||||
|
|
|
statfs() is deprecated in favor of statvfs(), which deals considerably better with large file support. statfs() is known to do odd things for sizes that exceed the value of an unsigned long. As far as I can tell (and remember), statvfs() has been around since Redhat 7.3, just after being introduced as a POSIX replacement. You'll likely find it on (most) modern systems. |
|||