ef05ebf70ce00f580c7df9a2af415b3da132ff21
[platform/upstream/glibc.git] / sysdeps / mach / hurd / bits / statfs.h
1 /* Definition of `struct statfs', information about a filesystem.
2    Copyright (C) 1996, 97, 98 Free Software Foundation, Inc.
3    This file is part of the GNU C Library.
4
5    The GNU C Library is free software; you can redistribute it and/or
6    modify it under the terms of the GNU Library General Public License as
7    published by the Free Software Foundation; either version 2 of the
8    License, or (at your option) any later version.
9
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    Library General Public License for more details.
14
15    You should have received a copy of the GNU Library General Public
16    License along with the GNU C Library; see the file COPYING.LIB.  If not,
17    write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
18    Boston, MA 02111-1307, USA.  */
19
20 #ifndef _SYS_STATFS_H
21 # error "Never include <bits/statfs.h> directly; use <sys/statfs.h> instead."
22 #endif
23
24 #include <bits/types.h>
25
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.
33
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.  */
37
38 struct statfs
39   {
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];
65   };
66
67 #ifdef __USE_LARGEFILE64
68 struct statfs64
69   {
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];
83   };
84 #endif