-- --**************************************************************************** --* * --* 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:53:47 by OpenVMS SDL EV1-33 -- Source: 2-SEP-1989 10:51:27 $11$DUA933:[LIB_ADA.LIS]PRCPOLDEF.SDL;1 --******************************************************************************************************************** with SYSTEM; use SYSTEM; with STARLET; use STARLET; with CONDITION_HANDLING; use CONDITION_HANDLING; package PRCPOLDEF is -- module $PRCPOLDEF --+ -- PROCESS POLLER MAILBOX MESSAGE DEFINITIONS --- PRCPOL_C_SIZ : constant := 56; -- SIZE OF MESSAGE type PRCPOL_TYPE is record SYSIDL : UNSIGNED_LONGWORD; -- LOW ORDER SYSTEM ID SYSIDH : UNSIGNED_WORD; -- HIGH ORDER SYSTEM ID FILLER_1 : UNSIGNED_WORD; -- (UNUSED) NODNAM : STRING(1 .. 16); -- SCA NODE NAME (COUNTED ASCII) PRCNAM : UNSIGNED_BYTE_ARRAY (1 .. 16); -- PROCESS NAME DIRINF : UNSIGNED_BYTE_ARRAY (1 .. 16); -- DIRECTORY INFORMATION end record; for PRCPOL_TYPE use record SYSIDL at 0 range 0 .. 31; SYSIDH at 4 range 0 .. 15; FILLER_1 at 6 range 0 .. 15; NODNAM at 8 range 0 .. 127; PRCNAM at 24 range 0 .. 127; DIRINF at 40 range 0 .. 127; end record; for PRCPOL_TYPE'SIZE use 448; PRCPOL_TYPE_INIT : constant PRCPOL_TYPE := (SYSIDL => 0, SYSIDH => 0, FILLER_1 => 0, NODNAM => (others => ASCII.NUL), PRCNAM => (others => 0), DIRINF => (others => 0)); end PRCPOLDEF;