home *** CD-ROM | disk | FTP | other *** search
- /*
- * @(#) ino.h 2.1 88/05/18
- *
- * Copyright (C) The Santa Cruz Operation, 1984, 1985, 1986, 1987.
- * Copyright (C) Microsoft Corporation, 1984, 1985, 1986, 1987.
- * 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.
- */
-
- /* Inode structure as it appears on a disk block. */
- struct dinode
- {
- ushort di_mode; /* mode and type of file */
- short di_nlink; /* number of links to file */
- ushort di_uid; /* owner's user id */
- ushort di_gid; /* owner's group id */
- off_t di_size; /* number of bytes in file */
- char di_addr[40]; /* disk block addresses */
- time_t di_atime; /* time last accessed */
- time_t di_mtime; /* time last modified */
- time_t di_ctime; /* time created */
- };
- /*
- * the 40 address bytes:
- * 39 used; 13 addresses
- * of 3 bytes each.
- */
-