Google
 

Trailing-Edge - PDP-10 Archives - BB-P363B-SM_1985 - mcb/nml/nmlpdb.lst
There are no other files named nmlpdb.lst in the archive.
NMLPDB								24-May-1985 13:23:18	TOPS-20 Bliss-16 2A(530)	    Page   1
								 3-Jan-1983 01:39:36	DNET61:<MCB.NML>NMLPDB.BLI.1 (1)

;	  0001	module NMLPDB	(
;	  0002			ident = 'X03.00'
;	  0003			) =
;	  0004	begin
;	  0005	
;	  0006	!
;	  0007	!                    COPYRIGHT (c) 1980, 1981, 1982
;	  0008	!                    DIGITAL EQUIPMENT CORPORATION
;	  0009	!                        Maynard, Massachusetts
;	  0010	!
;	  0011	!     This software is furnished under a license and may  be  used
;	  0012	!     and copied only in accordance with the terms of such license
;	  0013	!     and with the inclusion of the above copyright notice.   This
;	  0014	!     software  or any other copies thereof may not be provided or
;	  0015	!     otherwise made available to any other person.  No  title  to
;	  0016	!     and ownership of the software is hereby transferred.
;	  0017	!
;	  0018	!     The information  in  this  software  is  subject  to  change
;	  0019	!     without  notice  and should not be construed as a commitment
;	  0020	!     by DIGITAL EQUIPMENT CORPORATION.
;	  0021	!
;	  0022	!     DIGITAL assumes no responsibility for the use or reliability
;	  0023	!     of  its  software  on  equipment  which  is  not supplied by
;	  0024	!     DIGITAL.
;	  0025	!
;	  0026	
;	  0027	!++
;	  0028	! FACILITY:	DECnet-10/20 V3.0 Network Management Layer (NML)
;	  0029	!
;	  0030	! ABSTRACT:
;	  0031	!
;	  0032	!	Performs permanent data base processing for all entities.
;	  0033	!
;	  0034	! ENVIRONMENT:	TOPS-10/20 & MCB/RSX11 User mode under NML
;	  0035	!
;	  0036	! AUTHOR: Dale C. Gunn , CREATION DATE: 12-Nov-80
;	  0037	!
;	  0038	! MODIFIED BY:
;	  0039	!
;	  0040	!	, : VERSION
;	  0041	! 01	-
;	  0042	!--
NMLPDB								24-May-1985 13:23:18	TOPS-20 Bliss-16 2A(530)	    Page   2
X03.00								 3-Jan-1983 01:39:36	DNET61:<MCB.NML>NMLPDB.BLI.1 (2)

;	  0043	
;	  0044	!
;	  0045	! INCLUDE FILES:
;	  0046	!
;	  0047	
;	  0048	library 'NMLLIB' ;                      ! All required definitions
;	  0049	
;	  0050	!require 'NMLEXT' ;                      ! NML External routines
;	  0051	
;	  0052	!
;	  0053	! TABLE OF CONTENTS
;	  0054	!
;	  0055	
;	  0056	forward routine
;	  0057	        NML$PDB_READ,
;	  0058	        NML$PDB_CHANGE ;
;	  0059	
;	  0060	!
;	  0061	! MACROS:
;	  0062	!
;	  0063	
;	  0064	!
;	  0065	! EQUATED SYMBOLS:
;	  0066	!
;	  0067	
;	  0068	!
;	  0069	! OWN STORAGE:
;	  0070	!
;	  0071	
;	  0072	!
;	  0073	! EXTERNAL REFERENCES:
;	  0074	!
;	  0075	
NMLPDB								24-May-1985 13:23:18	TOPS-20 Bliss-16 2A(530)	    Page   3
X03.00								 3-Jan-1983 01:39:36	DNET61:<MCB.NML>NMLPDB.BLI.1 (3)

;	  0076	
;	  0077	global routine %unquote NML$PDB_READ (FUNCTION,TYPE,ENTITY,QUALIFIER,
;	  0078	                                      SELECTOR,LENGTH,BUFFER) =
;	  0079	
;	  0080	!++
;	  0081	! FUNCTIONAL DESCRIPTION:
;	  0082	!
;	  0083	!	Performs the NML NICE read function for NML permanent parameters.
;	  0084	!
;	  0085	! FORMAL PARAMETERS
;	  0086	!
;	  0087	!	FUNCTION  - Code to denote whether the specified parameter is to be
;	  0088	!                   defined or purged.
;	  0089	!       TYPE      - The NML entity type number of the entity to which the
;	  0090	!                   parameter pertains.
;	  0091	!       ENTITY    - Character sequence pointer to the entity id.
;	  0092	!       QUALIFIER - An optional character sequence pointer to a qualifier in
;	  0093	!                   parameter format.
;	  0094	!       SELECTOR  - For the return function, the class of entities to return.
;	  0095	!       LENGTH    - The address of a variable to be updated with the length
;	  0096	!                   of the data returned in the buffer.
;	  0097	!       BUFFER    - A character sequence pointer to the parameter buffer.
;	  0098	!
;	  0099	! IMPLICIT INPUTS
;	  0100	!
;	  0101	!	NONE.
;	  0102	!
;	  0103	! ROUTINE VALUE:
;	  0104	!
;	  0105	!	NML specified NICE return code.
;	  0106	!
;	  0107	! SIDE EFFECTS:
;	  0108	!
;	  0109	!	NONE.
;	  0110	!
;	  0111	!--
;	  0112	
;	  0113	    begin
;	  0114	
;	L 0115	    return $NICE$ERR_OPF ; 
; %PRINT:	Operation failure
;	  0116	
;	  0117	    end;				!End of NML$PDB_READ


						.TITLE	NMLPDB
						.IDENT	/X03.00/

						.SBTTL	NL.PPR
000000						.PSECT	$CODE$,  RO 

000000	012700  177747 			NL.PPR::MOV	#-31,R0				;					0113
NMLPDB								24-May-1985 13:23:18	TOPS-20 Bliss-16 2A(530)	    Page   4
X03.00								 3-Jan-1983 01:39:36	DNET61:<MCB.NML>NMLPDB.BLI.1 (3)

000004	000207 					RTS	PC				;					0077
; Routine Size:  3 words,	Routine Base:  $CODE$ + 0000
; Maximum stack depth per invocation:  0 words
NMLPDB								24-May-1985 13:23:18	TOPS-20 Bliss-16 2A(530)	    Page   5
X03.00								 3-Jan-1983 01:39:36	DNET61:<MCB.NML>NMLPDB.BLI.1 (4)

;	  0118	
;	  0119	global routine %unquote NML$PDB_CHANGE (FUNCTION,TYPE,ENTITY,QUALIFIER,
;	  0120	                                        LENGTH,BUFFER) =
;	  0121	
;	  0122	!++
;	  0123	! FUNCTIONAL DESCRIPTION:
;	  0124	!
;	  0125	!	Performs the NML NICE change function for NML permanent parameters.
;	  0126	!
;	  0127	! FORMAL PARAMETERS
;	  0128	!
;	  0129	!	FUNCTION  - Code to denote whether the specified parameter is to be
;	  0130	!                   defined or purged.
;	  0131	!       TYPE      - The NML entity type number of the entity to which the
;	  0132	!                   parameter pertains.
;	  0133	!       ENTITY    - Character sequence pointer to the entity id.
;	  0134	!       QUALIFIER - An optional character sequence pointer to a qualifier in
;	  0135	!                   parameter format.
;	  0136	!       LENGTH    - The address of a variable which contains the length
;	  0137	!                   of the parameter data passed in the buffer.
;	  0138	!       BUFFER    - A character sequence pointer to the parameter buffer.
;	  0139	!
;	  0140	! IMPLICIT INPUTS
;	  0141	!
;	  0142	!	NONE.
;	  0143	!
;	  0144	! ROUTINE VALUE:
;	  0145	!
;	  0146	!	NML specified NICE return code.
;	  0147	!
;	  0148	! SIDE EFFECTS:
;	  0149	!
;	  0150	!	NONE.
;	  0151	!
;	  0152	!--
;	  0153	
;	  0154	    begin
;	  0155	
;	L 0156	    return $NICE$ERR_OPF ;
; %PRINT:	Operation failure
;	  0157	
;	  0158	    end;				!End of NML$PDB_CHANGE


						.SBTTL	NL.PPC
000000	012700  177747 			NL.PPC::MOV	#-31,R0				;					0154
000004	000207 					RTS	PC				;					0119
; Routine Size:  3 words,	Routine Base:  $CODE$ + 0006
; Maximum stack depth per invocation:  0 words
NMLPDB								24-May-1985 13:23:18	TOPS-20 Bliss-16 2A(530)	    Page   6
X03.00								 3-Jan-1983 01:39:36	DNET61:<MCB.NML>NMLPDB.BLI.1 (5)

;	  0159	
;	  0160	end				!End of Module NMLPDB
;	  0161	eludom



;					PSECT SUMMARY
;
;	Psect Name			Words	  Attributes
;	 $CODE$				    6	    RO ,  I  ,  LCL,  REL,  CON




;				LIBRARY STATISTICS
;
;					     -------- Symbols --------    Blocks
;	File				     Total    Loaded   Percent      Read
;
;  DNET61:<MCB.NML>NMLLIB.L16.2		      2718         3         0         0





; Size:		6 code + 0 data words
; Run Time:	00:01.1
; Elapsed Time:	00:03.5
; Memory Used:	23 pages
; Compilation Complete
BUFFER				  78	 120
ENTITY				  77	 119
FUNCTION			  77	 119
NML$PDB_CHANGE			  58	 119#
NML$PDB_READ			  57	  77#
NMLPDB				   1#
QUALIFIER			  77	 119
SELECTOR			  78
TYPE				  77	 119
$NICE$ERR_OPF			 115	 156