statvfs.h 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687
  1. /* Definitions for getting information about a filesystem.
  2. Copyright (C) 1998, 1999, 2000 Free Software Foundation, Inc.
  3. This file is part of the GNU C Library.
  4. The GNU C Library is free software; you can redistribute it and/or
  5. modify it under the terms of the GNU Lesser General Public
  6. License as published by the Free Software Foundation; either
  7. version 2.1 of the License, or (at your option) any later version.
  8. The GNU C Library is distributed in the hope that it will be useful,
  9. but WITHOUT ANY WARRANTY; without even the implied warranty of
  10. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  11. Lesser General Public License for more details.
  12. You should have received a copy of the GNU Lesser General Public
  13. License along with the GNU C Library; if not, write to the Free
  14. Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
  15. 02111-1307 USA. */
  16. #ifndef _SYS_STATVFS_H
  17. #define _SYS_STATVFS_H 1
  18. #include <features.h>
  19. /* Get the system-specific definition of `struct statfs'. */
  20. #include <bits/statvfs.h>
  21. #ifndef __USE_FILE_OFFSET64
  22. # ifndef __fsblkcnt_t_defined
  23. typedef __fsblkcnt_t fsblkcnt_t; /* Type to count file system blocks. */
  24. # define __fsblkcnt_t_defined
  25. # endif
  26. # ifndef __fsfilcnt_t_defined
  27. typedef __fsfilcnt_t fsfilcnt_t; /* Type to count file system inodes. */
  28. # define __fsfilcnt_t_defined
  29. # endif
  30. #else
  31. # ifndef __fsblkcnt_t_defined
  32. typedef __fsblkcnt64_t fsblkcnt_t; /* Type to count file system blocks. */
  33. # define __fsblkcnt_t_defined
  34. # endif
  35. # ifndef __fsfilcnt_t_defined
  36. typedef __fsfilcnt64_t fsfilcnt_t; /* Type to count file system inodes. */
  37. # define __fsfilcnt_t_defined
  38. # endif
  39. #endif
  40. __BEGIN_DECLS
  41. /* Return information about the filesystem on which FILE resides. */
  42. #ifndef __USE_FILE_OFFSET64
  43. extern int statvfs (__const char *__restrict __file,
  44. struct statvfs *__restrict __buf) __THROW;
  45. #else
  46. # ifdef __REDIRECT
  47. extern int __REDIRECT (statvfs,
  48. (__const char *__restrict __file,
  49. struct statvfs *__restrict __buf) __THROW,
  50. statvfs64);
  51. # else
  52. # define statvfs statvfs64
  53. # endif
  54. #endif
  55. #ifdef __USE_LARGEFILE64
  56. extern int statvfs64 (__const char *__restrict __file,
  57. struct statvfs64 *__restrict __buf) __THROW;
  58. #endif
  59. /* Return information about the filesystem containing the file FILDES
  60. refers to. */
  61. #ifndef __USE_FILE_OFFSET64
  62. extern int fstatvfs (int __fildes, struct statvfs *__buf) __THROW;
  63. #else
  64. # ifdef __REDIRECT
  65. extern int __REDIRECT (fstatvfs, (int __fildes, struct statvfs *__buf) __THROW,
  66. fstatvfs64);
  67. # else
  68. # define fstatvfs fstatvfs64
  69. # endif
  70. #endif
  71. #ifdef __USE_LARGEFILE64
  72. extern int fstatvfs64 (int __fildes, struct statvfs64 *__buf) __THROW;
  73. #endif
  74. __END_DECLS
  75. #endif /* sys/statvfs.h */