Google
 

Trailing-Edge - PDP-10 Archives - BB-P363B-SM_1985 - mcb/cex/inidat.r16
There are no other files named inidat.r16 in the archive.
! [Beginning of INIDAT]
!
!
!                    COPYRIGHT (c) 1980, 1981, 1982
!                    DIGITAL EQUIPMENT CORPORATION
!                        Maynard, Massachusetts
!
!     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.
!

!++
!
! FACILITY: DN20 Initialization
!
! ABSTRACT:
!
!	This contains the data structure definitions for DN20 initialization.
!
! ENVIRONMENT: MCB V3.0
!
! AUTHOR: Alan D. Peckham	CREATION DATE: 24-Oct-80
!
! MODIFIED BY:
!
!--
!
! Status Codes:
!

DECLARE_SEVERITY (INI, SEVERE);

$INI_SEVERE (INI$_BAD_CODE, 'Value in C_PRM5 has been modified by called process')
$INI_SEVERE (INI$_NO_CCB, 'Unable to allocate CCB during initialization')
$INI_SEVERE (INI$_NO_INI, 'Unable to obtain my own PIX')
$INI_SEVERE (INI$_NO_DSR, 'Unable to get DSR block')
$INI_SEVERE (INI$_FAILED, 'Requested function failed')
$INI_SEVERE (INI$_NO_CODE, 'No process for attached LLC PIX')

!
! INI process data base
!

$FIELD
    D_FIELDS =
	set
	D_TIM = [$BYTE],
	D_LIX = [$BYTE],
	D_ADR = [$SHORT_INTEGER],
	D_NAM = [$BYTES (6)],
	D_HST = [$BYTES (6)],
	D_HAD = [$SHORT_INTEGER]
	tes;

$LITERAL
    D_LEN = $FIELD_SET_SIZE;

!
! [End of INIDAT]