mirror of
https://github.com/RGBCube/serenity
synced 2025-05-20 11:45:06 +00:00
Kernel: Implement f_basetype
in statvfs
This commit is contained in:
parent
8209c2b570
commit
4ba39c8d63
2 changed files with 6 additions and 0 deletions
|
@ -15,6 +15,8 @@ extern "C" {
|
|||
#define ST_RDONLY 0x1
|
||||
#define ST_NOSUID 0x2
|
||||
|
||||
#define FSTYPSZ 16
|
||||
|
||||
struct statvfs {
|
||||
unsigned long f_bsize;
|
||||
unsigned long f_frsize;
|
||||
|
@ -29,6 +31,8 @@ struct statvfs {
|
|||
unsigned long f_fsid;
|
||||
unsigned long f_flag;
|
||||
unsigned long f_namemax;
|
||||
|
||||
char f_basetype[FSTYPSZ];
|
||||
};
|
||||
|
||||
#ifdef __cplusplus
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue