home *** CD-ROM | disk | FTP | other *** search
- /*
- * @(#) proctl.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.
- */
-
- /* proctl() requests */
-
- #define PRHUGEX 1 /* allow process > swapper size to execute */
- #define PRNORMEX 2 /* remove PRHUGEX permission */
- #define PRGETCMEM 3 /* allocate physically contiguous memory */
- #define PRHGETCMEM 4 /* same as above, for huge model */
- #define PRFREECMEM 5 /* deallocate memory allocated via PRGETCMEM */
- #define PRHFREECMEM 6 /* same as above, for huge model */
-
- /* proctl() arg structures */
- struct pr_cmemarg {
- char far *addr;
- long bsize;
- };
-
-