statfs.h
上传用户:jlfgdled
上传日期:2013-04-10
资源大小:33168k
文件大小:1k
源码类别:

Linux/Unix编程

开发平台:

Unix_Linux

  1. /*
  2.  * This file is subject to the terms and conditions of the GNU General Public
  3.  * License.  See the file "COPYING" in the main directory of this archive
  4.  * for more details.
  5.  *
  6.  * Copyright (C) 1995, 1999 by Ralf Baechle
  7.  */
  8. #ifndef _ASM_STATFS_H
  9. #define _ASM_STATFS_H
  10. #include <linux/posix_types.h>
  11. #ifndef __KERNEL_STRICT_NAMES
  12. #include <linux/types.h>
  13. typedef __kernel_fsid_t        fsid_t;
  14. #endif
  15. struct statfs {
  16. long f_type;
  17. #define f_fstyp f_type
  18. long f_bsize;
  19. long f_frsize; /* Fragment size - unsupported */
  20. long f_blocks;
  21. long f_bfree;
  22. long f_files;
  23. long f_ffree;
  24. /* Linux specials */
  25. long f_bavail;
  26. __kernel_fsid_t f_fsid;
  27. long f_namelen;
  28. long f_spare[6];
  29. };
  30. #endif /* _ASM_STATFS_H */