2.9
[glibc/nacl-glibc.git] / sysdeps / mach / hurd / bits / statfs.h
blob9183f98c8aca2935bdace405699d8feb74dc542d
1 /* Definition of `struct statfs', information about a filesystem.
2 Copyright (C) 1996, 97, 98, 2000 Free Software Foundation, Inc.
3 This file is part of the GNU C Library.
5 The GNU C Library is free software; you can redistribute it and/or
6 modify it under the terms of the GNU Lesser General Public
7 License as published by the Free Software Foundation; either
8 version 2.1 of the License, or (at your option) any later version.
10 The GNU C Library is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 Lesser General Public License for more details.
15 You should have received a copy of the GNU Lesser General Public
16 License along with the GNU C Library; if not, write to the Free
17 Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
18 02111-1307 USA. */
20 #ifndef _SYS_STATFS_H
21 # error "Never include <bits/statfs.h> directly; use <sys/statfs.h> instead."
22 #endif
24 #include <bits/types.h>
26 /* GNU Hurd NOTE: The size of this structure (16 ints) is known in
27 <hurd/hurd_types.defs>, since it is used in the `file_statfs' RPC. MiG
28 does not cope at all well with the passed C structure not being of the
29 expected size. There are some filler words at the end to allow for
30 future expansion. To increase the size of the structure used in the RPC
31 and retain binary compatibility, we would need to assign a new message
32 number.
34 Note also that `struct statvfs' in <bits/statvfs.h> is laid out
35 identically to `struct statfs', so they can be used interchangeably.
36 Any changes made here must also be made in that file. */
38 struct statfs
40 unsigned int f_type;
41 unsigned int f_bsize;
42 #ifndef __USE_FILE_OFFSET64
43 __fsblkcnt_t f_blocks;
44 __fsblkcnt_t f_bfree;
45 __fsblkcnt_t f_bavail;
46 __fsblkcnt_t f_files;
47 __fsblkcnt_t f_ffree;
48 #else
49 __fsblkcnt64_t f_blocks;
50 __fsblkcnt64_t f_bfree;
51 __fsblkcnt64_t f_bavail;
52 __fsblkcnt64_t f_files;
53 __fsblkcnt64_t f_ffree;
54 #endif
55 __fsid_t f_fsid;
56 unsigned int f_namelen;
57 #ifndef __USE_FILE_OFFSET64
58 __fsfilcnt_t f_favail;
59 #else
60 __fsfilcnt64_t f_favail;
61 #endif
62 unsigned int f_frsize;
63 unsigned int f_flag;
64 unsigned int f_spare[3];
67 #ifdef __USE_LARGEFILE64
68 struct statfs64
70 unsigned int f_type;
71 unsigned int f_bsize;
72 __fsblkcnt64_t f_blocks;
73 __fsblkcnt64_t f_bfree;
74 __fsblkcnt64_t f_bavail;
75 __fsblkcnt64_t f_files;
76 __fsblkcnt64_t f_ffree;
77 __fsid_t f_fsid;
78 unsigned int f_namelen;
79 __fsfilcnt64_t f_favail;
80 unsigned int f_frsize;
81 unsigned int f_flag;
82 unsigned int f_spare[3];
84 #endif
86 /* Tell code we have this member. */
87 #define _STATFS_F_NAMELEN