home *** CD-ROM | disk | FTP | other *** search
/ Piper's Pit BBS/FTP: ibm 0010 - 0019 / ibm0010-0019 / ibm0010.tar / ibm0010 / UNIX3862.ZIP / U386-06.ZIP / U386-6.TD0 / usr / include / sys / statfs.h < prev    next >
Encoding:
C/C++ Source or Header  |  1988-06-26  |  780 b   |  26 lines

  1. /*    Copyright (c) 1984, 1986, 1987, 1988 AT&T    */
  2. /*      All Rights Reserved      */
  3.  
  4. /*    THIS IS UNPUBLISHED PROPRIETARY SOURCE CODE OF AT&T    */
  5. /*    The copyright notice above does not evidence any       */
  6. /*    actual or intended publication of such source code.    */
  7.  
  8.  
  9. #ident    "@(#)head.sys:statfs.h    1.3"
  10.  
  11. /*
  12.  * Structure returned by the statfs() system call.
  13.  */
  14.  
  15. struct    statfs {
  16.     short    f_fstyp;    /* File system type */
  17.     long    f_bsize;    /* Block size */
  18.     long    f_frsize;    /* Fragment size (if supported) */
  19.     long    f_blocks;    /* Total number of blocks on file system */
  20.     long    f_bfree;    /* Total number of free blocks */
  21.     long    f_files;    /* Total number of file nodes (inodes) */
  22.     long    f_ffree;    /* Total number of free file nodes */
  23.     char    f_fname[6];    /* Volume name */
  24.     char    f_fpack[6];    /* Pack name */
  25. };
  26.