home *** CD-ROM | disk | FTP | other *** search
- /*
- * @(#) map.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.
- */
-
-
- struct mapent
- {
- unsigned int m_size;
- unsigned int m_addr;
- };
-
- struct map
- {
- unsigned int nwaiting; /* # of processes waiting for freed space from this map */
- unsigned int ncells; /* max. number of entries allowed in this map */
- struct mapent *mpent; /* pointer to the map entries */
- };
-
- #ifndef M_I386
- extern struct map swapmap;
- #endif
- extern struct map coremap;
-