-- --**************************************************************************** --* * --* 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:51:09 by OpenVMS SDL EV1-33 -- Source: 2-SEP-1989 10:38:32 $11$DUA933:[LIB_ADA.LIS]DTSSDEF.SDL;1 --******************************************************************************************************************** with SYSTEM; use SYSTEM; with STARLET; use STARLET; with CONDITION_HANDLING; use CONDITION_HANDLING; package DTSSDEF is -- module $DTSSDEF --+ -- -- Bit definitions for EXE$GL_DTSSFLAGS - flags for Distributed Time Service -- --- DTSS_M_ACTIVE : constant := 16#00000001#; type DTSS_TYPE is record ACTIVE : BOOLEAN; -- Time service active FILLER_1 : UNSIGNED_7; end record; for DTSS_TYPE use record ACTIVE at 0 range 0 .. 0; FILLER_1 at 0 range 1 .. 7; end record; for DTSS_TYPE'SIZE use 8; DTSS_TYPE_INIT : constant DTSS_TYPE := (ACTIVE => FALSE, FILLER_1 => 0); end DTSSDEF;