-- --**************************************************************************** --* * --* Copyright (c) 2001 * --* by DIGITAL Equipment Corporation, Maynard, Mass. * --* * --* This software is furnished under a license and may be used and copied * --* only in accordance with the terms of such license and with the * --* inclusion of the above copyright notice. This software or any other * --* copies thereof may not be provided or otherwise made available to any * --* other person. No title to and ownership of the software is hereby * --* transferred. * --* * --* The information in this software is subject to change without notice * --* and should not be construed as a commitment by DIGITAL Equipment * --* Corporation. * --* * --* DIGITAL assumes no responsibility for the use or reliability of its * --* software on equipment which is not supplied by DIGITAL. * --* * --**************************************************************************** --******************************************************************************************************************** -- Created: 15-MAR-2001 22:52:10 by OpenVMS SDL EV1-33 -- Source: 2-SEP-1989 10:42:30 $11$DUA933:[LIB_ADA.LIS]ICPDEF.SDL;1 --******************************************************************************************************************** with SYSTEM; use SYSTEM; with STARLET; use STARLET; with CONDITION_HANDLING; use CONDITION_HANDLING; package ICPDEF is -- module $ICPDEF --+ -- ICP - CHANGE IMAGE SECTION PROTECTION DATA -- -- THIS STRUCTURE IS USED IN THE IMAGE FIXUP SECTION BY THE LINKER -- TO INFORM THE IMAGE ACTIVATOR OF THE IMAGE SECTIONS THAT NEED -- THEIR PROTECTION CHANGED. --- ICP_K_LENGTH : constant := 8; -- size of one section's data ICP_C_LENGTH : constant := 8; -- size of one section's data type ICP_TYPE is record BASEVA : UNSIGNED_LONGWORD; -- virtual address of start of section NPAGES : UNSIGNED_WORD; -- number of pages to change protection on NEWPRT : UNSIGNED_WORD; -- new protection end record; for ICP_TYPE use record BASEVA at 0 range 0 .. 31; NPAGES at 4 range 0 .. 15; NEWPRT at 6 range 0 .. 15; end record; for ICP_TYPE'SIZE use 64; ICP_TYPE_INIT : constant ICP_TYPE := (BASEVA => 0, NPAGES => 0, NEWPRT => 0); end ICPDEF;