home *** CD-ROM | disk | FTP | other *** search
- /*
- * @(#) aligncoff.h 1.1 88/05/23
- *
- * 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 SPECIFIC TO THE
- * INTEL 80386 CPU AND MAY REQUIRE MODIFICATION
- * WHEN ADAPTING XENIX TO NEW HARDWARE.
- */
-
- /*
- * ATT 5.3 shmid_ds structure for binary compatibility purposes.
- * Used in shmctl().
- */
-
- struct shmid_coff_ds {
- struct ipc_perm shm_perm; /* operation permission struct */
- int shm_segsz; /* size of segment in bytes */
- char *shm_reg; /* ptr to region structure */
- char pad[4]; /* for swap compatibility */
- ushort shm_lpid; /* pid of last shmop */
- ushort shm_cpid; /* pid of creator */
- ushort shm_nattch; /* used only for shminfo */
- ushort shm_cnattch; /* used only for shminfo */
- time_t shm_atime; /* last shmat time */
- time_t shm_dtime; /* last shmdt time */
- time_t shm_ctime; /* last change time */
- };
-