9a9b91c940
It's finally done.. Signed-off-by: kaguya <vpshinomiya@protonmail.com>
37 lines
652 B
C
37 lines
652 B
C
#ifndef _ABIBITS_STATVFS_H
|
|
#define _ABIBITS_STATVFS_H
|
|
|
|
#include <abi-bits/fsblkcnt_t.h>
|
|
#include <abi-bits/fsfilcnt_t.h>
|
|
|
|
#define ST_RDONLY 1
|
|
#define ST_NOSUID 2
|
|
#define ST_MANDLOCK 64
|
|
|
|
#define FSTYPSZ 16
|
|
|
|
/* On Linux, this struct is not directly used by the kernel. */
|
|
struct statvfs {
|
|
unsigned long f_bsize;
|
|
unsigned long f_frsize;
|
|
fsblkcnt_t f_blocks;
|
|
fsblkcnt_t f_bfree;
|
|
fsblkcnt_t f_bavail;
|
|
|
|
fsfilcnt_t f_files;
|
|
fsfilcnt_t f_ffree;
|
|
fsfilcnt_t f_favail;
|
|
|
|
unsigned long f_fsid;
|
|
char f_basetype[FSTYPSZ];
|
|
|
|
unsigned long f_flag;
|
|
unsigned long f_namemax;
|
|
char f_fstr[32];
|
|
unsigned long f_filler[16];
|
|
};
|
|
|
|
#endif /* _ABIBITS_STATVFS_H */
|
|
|
|
|