home *** CD-ROM | disk | FTP | other *** search
- /*
- * @(#) statfs.h 1.1 88/05/18
- *
- * Copyright (C) The Santa Cruz Operation, 1984, 1985, 1986, 1987, 1988.
- * Copyright (C) Microsoft Corporation, 1984, 1985, 1986, 1987, 1988.
- * This Module contains Proprietary Information of
- * The Santa Cruz Operation, Microsoft Corporation
- * and AT&T, and should be treated as Confidential.
- */
-
- /*
- * THIS FILE CONTAINS CODE WHICH IS DESIGNED TO BE
- * PORTABLE BETWEEN DIFFERENT MACHINE ARCHITECTURES
- * AND CONFIGURATIONS. IT SHOULD NOT REQUIRE ANY
- * MODIFICATIONS WHEN ADAPTING XENIX TO NEW HARDWARE.
- */
-
-
- /*
- * Structure returned by the statfs() system call.
- */
-
- struct statfs {
- short f_fstyp; /* File system type */
- long f_bsize; /* Block size */
- long f_frsize; /* Fragment size (if supported) */
- long f_blocks; /* Total number of blocks on file system */
- long f_bfree; /* Total number of free blocks */
- long f_files; /* Total number of file nodes (inodes) */
- long f_ffree; /* Total number of free file nodes */
- char f_fname[6]; /* Volume name */
- char f_fpack[6]; /* Pack name */
- };
-