statfs.h 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. /* Copyright (C) 1997, 1998 Free Software Foundation, Inc.
  2. This file is part of the GNU C Library.
  3. The GNU C Library is free software; you can redistribute it and/or
  4. modify it under the terms of the GNU Library General Public License as
  5. published by the Free Software Foundation; either version 2 of the
  6. License, or (at your option) any later version.
  7. The GNU C Library is distributed in the hope that it will be useful,
  8. but WITHOUT ANY WARRANTY; without even the implied warranty of
  9. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  10. Library General Public License for more details.
  11. You should have received a copy of the GNU Library General Public
  12. License along with the GNU C Library; see the file COPYING.LIB. If not,
  13. write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
  14. Boston, MA 02111-1307, USA. */
  15. #ifndef _SYS_STATFS_H
  16. # error "Never include <bits/statfs.h> directly; use <sys/statfs.h> instead."
  17. #endif
  18. #include <bits/types.h> /* for __fsid_t and __fsblkcnt_t*/
  19. struct statfs
  20. {
  21. int f_type;
  22. int f_bsize;
  23. #ifndef __USE_FILE_OFFSET64
  24. __fsblkcnt_t f_blocks;
  25. __fsblkcnt_t f_bfree;
  26. __fsblkcnt_t f_bavail;
  27. __fsfilcnt_t f_files;
  28. __fsfilcnt_t f_ffree;
  29. #else
  30. __fsblkcnt64_t f_blocks;
  31. __fsblkcnt64_t f_bfree;
  32. __fsblkcnt64_t f_bavail;
  33. __fsfilcnt64_t f_files;
  34. __fsfilcnt64_t f_ffree;
  35. #endif
  36. __fsid_t f_fsid;
  37. int f_namelen;
  38. int f_spare[6];
  39. };
  40. #ifdef __USE_LARGEFILE64
  41. struct statfs64
  42. {
  43. int f_type;
  44. int f_bsize;
  45. __fsblkcnt64_t f_blocks;
  46. __fsblkcnt64_t f_bfree;
  47. __fsblkcnt64_t f_bavail;
  48. __fsfilcnt64_t f_files;
  49. __fsfilcnt64_t f_ffree;
  50. __fsid_t f_fsid;
  51. int f_namelen;
  52. int f_spare[6];
  53. };
  54. #endif