Add f_flags to struct statfs for MIPS.

This commit is contained in:
Joseph Myers 2010-08-12 22:18:00 +00:00
parent 9672c67a8c
commit 0955180613
2 changed files with 10 additions and 3 deletions

View file

@ -1,3 +1,8 @@
2010-08-12 Joseph Myers <joseph@codesourcery.com>
* sysdeps/unix/sysv/linux/mips/bits/statfs.h (struct statfs,
struct statfs64): Add f_flags field.
2010-08-12 Joseph Myers <joseph@codesourcery.com>
* sysdeps/unix/sysv/linux/mips/sys/inotify.h (IN_EXCL_UNLINK):

View file

@ -1,4 +1,4 @@
/* Copyright (C) 1997, 2000 Free Software Foundation, Inc.
/* Copyright (C) 1997, 2000, 2010 Free Software Foundation, Inc.
This file is part of the GNU C Library.
The GNU C Library is free software; you can redistribute it and/or
@ -45,7 +45,8 @@ struct statfs
/* Linux specials */
__fsid_t f_fsid;
long int f_namelen;
long int f_spare[6];
long int f_flags;
long int f_spare[5];
};
#ifdef __USE_LARGEFILE64
@ -64,7 +65,8 @@ struct statfs64
/* Linux specials */
__fsid_t f_fsid;
long int f_namelen;
long int f_spare[6];
long int f_flags;
long int f_spare[5];
};
#endif