!*** MODULE $RMIDEF *** !DEC$ OPTIONS/ALIGN=(RECORDS=PACKED,COMMONS=PACKED)/NOWARN ! + ! Get System Performance Information Data Identifier Definitions ! ! The following constants define the items which can be collected ! with the Get System Performance Information service (GETRMI). ! The item numbers are defined as follows: ! ! 16 12 0 ! +------------------+-------------+ ! | Structure number | Item number | ! +------------------+-------------+ ! ! The top four bits represent the structure of the item and the last 12 ! bits represent the item within the structure. ! ! ****** Caution! ! ****** This file is no longer intended to be modified. ! ****** ! The following had been guidelines for adding symbols to RMIDEF. ! This interface is now defined in [STARLET]GETSYIDEF.SDL. ! Therefore, changing any item number is unacceptable. Some spare item ! number exist in each range; if these are ever exhausted, new ranges must ! be defined and support added, rather than changing item numbers. ! ! As any enhancements are mode to $GETRMI, changes should be made to ! STARLET, and modules should be changed to use the new GETRMI$ symbols ! to replace RMI$ symbols. ! ! * The item numbers start ! * at 0 and increase sequentially to the last item (even across tables). ! * If new items are added to a table, programs MUST be relinked to allow ! * the old definitions to change. This was done to simplify some table ! * lookups in the Monitor Utility. To get around this, new items can be ! * added at the end of the list. ! * ! * Each table has one item at the end to act as a place holder. It should ! * have the same item number as the first item of the next table. These ! * items are not counters in the total number of RMI items GETRMI$_TABLESIZE. ! - ! DEFINE TABLE TYPES PARAMETER RMI$C_EXETYPE = '00000001'X ! Executive cells PARAMETER RMI$C_EWSTYPE = '00000002'X ! Executive writable storage area PARAMETER RMI$C_MONTYPE = '00000003'X ! Monitor specific items PARAMETER RMI$C_RMSTYPE = '00000004'X ! Monitor RMS specific items PARAMETER RMI$C_EX2TYPE = '00000005'X ! Ececutive cells extension PARAMETER RMI$C_LISTEND = '00000000'X ! End of table list ! ! The following section defines items which are collected during initialization. ! There items include general system information, and server version number. ! The server version number is also defined here. ! PARAMETER RMI$_initial = -1 ! Initialization item list PARAMETER RMI$_data_collection = -2 ! Data collection item list PARAMETER RMI$_sysinfo = -3 ! System information item PARAMETER RMI$_version_number = -4 ! Monitor version number PARAMETER RMI$_rms_file = -5 ! Parse file name PARAMETER RMI$_rms_gs = -6 ! Get global section address PARAMETER RMI$_last_type = -7 PARAMETER RMI$_server_version = '00000005'X ! ! Define bits in the PMS flags field PMS$GL_FLAGS. These are used to ! synchronize access to some PMS field and enable other activity. ! STRUCTURE /rmi$pms_flags/ PARAMETER RMI$S_disk_enable = 1 PARAMETER RMI$V_disk_enable = 0 ! YES => Enable disk queue length collection ! This field must be accessed via an interlocked ! bit instruction. PARAMETER RMI$S_filler1 = 7 PARAMETER RMI$V_filler1 = 1 ! Fill out remainder of first byte PARAMETER RMI$S_disk_sync = 1 PARAMETER RMI$V_disk_sync = 8 ! YES => Synchronize access to several PMS counters ! used in the collection of disk queue length. ! This field must be accessed via an interlocked ! bit instruction, AND MUST BE IN A SEPARATE ! BYTE from the disk_enable bit (required by ! the architecture to maintain synchronization). PARAMETER RMI$S_filler2 = 23 PARAMETER RMI$V_filler2 = 9 BYTE %FILL (4) ! Fill out remainder of field END STRUCTURE ! rmi$pms_flags ! ! Define two contants to handle help handle large lookaside lists. The ! maximum number that RMISHR will count to is defined with ! RMI$K_MAX_PACKET and the value returned when this threshold is ! reached is defined as RMI$K_POOL_OVF. ! PARAMETER RMI$k_max_packet = '000001F4'X PARAMETER RMI$k_pool_ovf = '80000001'X ! ! Define item identifier numbers. Each data item has an associated ! value which is used to find its entry in the EXETBL. The item table ! is defined by the macros RMI_GENERATE_TABLE which makes multiple calls ! to the macro RMI_ITEM_CODE defined in the SYSGETRMI module. ! PARAMETER RMI$_MODES = '00001000'X ! All modes counters on all CPU's PARAMETER RMI$_INTERRUPT = '00001001'X ! time on interrupt stack -- primary PARAMETER RMI$_KERNEL = '00001002'X ! time in kernel mode -- primary PARAMETER RMI$_EXEC = '00001003'X ! time in exec mode -- primary PARAMETER RMI$_SUPER = '00001004'X ! time in supervisor mode -- primary PARAMETER RMI$_USER = '00001005'X ! time in user mode -- primary PARAMETER RMI$_COMPAT = '00001006'X ! time in compat. mode -- primary PARAMETER RMI$_INTERRUPT_BUSY = '00001007'X ! Time spent RMInning on the interrupt stack PARAMETER RMI$_KERNEL_BUSY = '00001008'X ! Time spent RMInning on the lernel stack PARAMETER RMI$_IDLE = '00001009'X ! idle time -- primary PARAMETER RMI$_CPUBUSY = '0000100A'X ! RETIRED ITEM - RETURNS 0 PARAMETER RMI$_COLPG = '0000100B'X ! collided page wait PARAMETER RMI$_MWAIT = '0000100C'X ! memory wait PARAMETER RMI$_CEF = '0000100D'X ! common event flag wait PARAMETER RMI$_PFW = '0000100E'X ! page wait PARAMETER RMI$_LEF = '0000100F'X ! local event flag wait PARAMETER RMI$_LEFO = '00001010'X ! lef wait out of bal. set PARAMETER RMI$_HIB = '00001011'X ! hibernating PARAMETER RMI$_HIBO = '00001012'X ! hibernating outswapped PARAMETER RMI$_SUSP = '00001013'X ! suspended PARAMETER RMI$_SUSPO = '00001014'X ! suspended outswapped PARAMETER RMI$_FPG = '00001015'X ! free page wait PARAMETER RMI$_COM = '00001016'X ! computing PARAMETER RMI$_COMO = '00001017'X ! computable outswapped PARAMETER RMI$_CUR = '00001018'X ! current PARAMETER RMI$_OTHSTAT = '00001019'X ! RETIRED ITEM - RETURNS 0 PARAMETER RMI$_PROCS = '0000101A'X ! process count for SYSTEM class PARAMETER RMI$_PROC = '0000101B'X ! collect all process information PARAMETER RMI$_FRLIST = '0000101C'X ! size of free list PARAMETER RMI$_MODLIST = '0000101D'X ! size of modified list PARAMETER RMI$_FAULTS = '0000101E'X ! page fault count PARAMETER RMI$_PREADS = '0000101F'X ! page reads PARAMETER RMI$_PWRITES = '00001020'X ! page writes PARAMETER RMI$_PWRITIO = '00001021'X ! physical page write I/O's PARAMETER RMI$_PREADIO = '00001022'X ! physical page read I/O's PARAMETER RMI$_GVALFLTS = '00001023'X ! global valid faults PARAMETER RMI$_WRTINPROG = '00001024'X ! faults from write in progress PARAMETER RMI$_FREFLTS = '00001025'X ! faults from free list PARAMETER RMI$_MFYFLTS = '00001026'X ! faults from modified list PARAMETER RMI$_DZROFLTS = '00001027'X ! demand zero faults PARAMETER RMI$_SYSFAULTS = '00001028'X ! system page faults PARAMETER RMI$_LRPCNT = '00001029'X ! number of LRP packets available PARAMETER RMI$_LRPINUSE = '0000102A'X ! number of LRPs in use PARAMETER RMI$_IRPCNT = '0000102B'X ! number of IRP packets available PARAMETER RMI$_IRPINUSE = '0000102C'X ! number of IRPs in use PARAMETER RMI$_SRPCNT = '0000102D'X ! number of SRP packets available PARAMETER RMI$_SRPINUSE = '0000102E'X ! number of SRPs in use PARAMETER RMI$_HOLECNT = '0000102F'X ! number of blocks in dyn. memory PARAMETER RMI$_BIGHOLE = '00001030'X ! largest hole PARAMETER RMI$_SMALLHOLE = '00001031'X ! smallest hole PARAMETER RMI$_HOLESUM = '00001032'X ! total space in dyn. memory available PARAMETER RMI$_DYNINUSE = '00001033'X ! dynamic memory space in use PARAMETER RMI$_SMALLCNT = '00001034'X ! number of blocks < 32 bytes in size PARAMETER RMI$_ISWPCNT = '00001035'X ! total inswaps PARAMETER RMI$_DIRIO = '00001036'X ! count of direct I/Os PARAMETER RMI$_BUFIO = '00001037'X ! count of buffered I/Os PARAMETER RMI$_MBREADS = '00001038'X ! total mailbox reads PARAMETER RMI$_MBWRITES = '00001039'X ! total mailbox writes PARAMETER RMI$_LOGNAM = '0000103A'X ! logical name translations PARAMETER RMI$_FCPCALLS = '0000103B'X ! total fcp calls PARAMETER RMI$_FCPREAD = '0000103C'X ! number of disk reads by FCP PARAMETER RMI$_FCPWRITE = '0000103D'X ! number of disk writes by FCP PARAMETER RMI$_FCPCACHE = '0000103E'X ! number of FCP cache hits PARAMETER RMI$_FCPCPU = '0000103F'X ! number of CPU tics by FCP PARAMETER RMI$_FCPHIT = '00001040'X ! number of window hits PARAMETER RMI$_FCPSPLIT = '00001041'X ! number of split transfers PARAMETER RMI$_FCPFAULT = '00001042'X ! number of FCP page faults PARAMETER RMI$_ENQNEW = '00001043'X ! number of ENQ's (new) PARAMETER RMI$_ENQCVT = '00001044'X ! number of ENQ's (conversions) PARAMETER RMI$_DEQ = '00001045'X ! number of DEQ's PARAMETER RMI$_BLKAST = '00001046'X ! number of blocking AST's PARAMETER RMI$_ENQWAIT = '00001047'X ! number of ENQ's forced to wait PARAMETER RMI$_ENQNOTQD = '00001048'X ! number of ENQ's not queued PARAMETER RMI$_DLCKSRCH = '00001049'X ! number of deadlock searches PARAMETER RMI$_DLCKFND = '0000104A'X ! number of deadlocks found PARAMETER RMI$_NUMLOCKS = '0000104B'X ! total locks PARAMETER RMI$_NUMRES = '0000104C'X ! total resources PARAMETER RMI$_ARRLOCPK = '0000104D'X ! arriving local packets PARAMETER RMI$_DEPLOCPK = '0000104E'X ! departing local packets PARAMETER RMI$_ARRTRAPK = '0000104F'X ! arriving transit packets PARAMETER RMI$_TRCNGLOS = '00001050'X ! transit congestion loss PARAMETER RMI$_RCVBUFFL = '00001051'X ! receiver buffer failures PARAMETER RMI$_RESERVED1 = '00001052'X ! Reserved PMS location 1 PARAMETER RMI$_RESERVED2 = '00001053'X ! Reserved PMS location 2 PARAMETER RMI$_RESERVED3 = '00001054'X ! Reserved PMS location 3 PARAMETER RMI$_RESERVED4 = '00001055'X ! Reserved PMS location 4 PARAMETER RMI$_RESERVED5 = '00001056'X ! Reserved PMS location 5 PARAMETER RMI$_RESERVED6 = '00001057'X ! Reserved PMS location 6 PARAMETER RMI$_RESERVED7 = '00001058'X ! Reserved PMS location 7 PARAMETER RMI$_RESERVED8 = '00001059'X ! Reserved PMS location 8 PARAMETER RMI$_RESERVED9 = '0000105A'X ! Reserved PMS location 9 PARAMETER RMI$_RESERVED10 = '0000105B'X ! Reserved PMS location 10 PARAMETER RMI$_RESERVED11 = '0000105C'X ! Reserved PMS location 11 PARAMETER RMI$_RESERVED12 = '0000105D'X ! Reserved PMS location 12 PARAMETER RMI$_RESERVED13 = '0000105E'X ! Reserved PMS location 13 PARAMETER RMI$_RESERVED14 = '0000105F'X ! Reserved PMS location 14 PARAMETER RMI$_RESERVED15 = '00001060'X ! Reserved PMS location 15 PARAMETER RMI$_RESERVED16 = '00001061'X ! Reserved PMS location 16 PARAMETER RMI$_RESERVED17 = '00001062'X ! Reserved PMS location 17 PARAMETER RMI$_RESERVED18 = '00001063'X ! Reserved PMS location 18 PARAMETER RMI$_FID_TRIES = '00001064'X ! count of File Id cache attempts PARAMETER RMI$_FILHDR_TRIES = '00001065'X ! count of File header cache attempts PARAMETER RMI$_DIRFCB_TRIES = '00001066'X ! count of Directory block cache attempts PARAMETER RMI$_DIRDATA_TRIES = '00001067'X ! count of Directory data cache attempts PARAMETER RMI$_EXT_TRIES = '00001068'X ! count of Extent cache attempts PARAMETER RMI$_QUO_TRIES = '00001069'X ! count of Quota cache attempts PARAMETER RMI$_STORAGMAP_TRIES = '0000106A'X ! count of storage bitmap cache attempts PARAMETER RMI$_DISKS = '0000106B'X ! all disk data PARAMETER RMI$_TOTAL_LOCKS = '0000106C'X ! Total of all locking activity - NOT COLLECTED BY RMI - ! Total of all locking activity - NOT COLLECTED BY RMI - COMP PARAMETER RMI$_ENQNEWLOC = '0000106D'X ! new lock requests (local) PARAMETER RMI$_ENQNEWIN = '0000106E'X ! new lock requests (incoming) PARAMETER RMI$_ENQNEWOUT = '0000106F'X ! new lock requests (outgoing) PARAMETER RMI$_ENQCVTLOC = '00001070'X ! lock conversion requests (local) PARAMETER RMI$_ENQCVTIN = '00001071'X ! lock conversion requests (incoming) PARAMETER RMI$_ENQCVTOUT = '00001072'X ! lock conversion requests (outgoing) PARAMETER RMI$_DEQLOC = '00001073'X ! dequeues (local) PARAMETER RMI$_DEQIN = '00001074'X ! dequeues (incoming) PARAMETER RMI$_DEQOUT = '00001075'X ! dequeues (outgoing) PARAMETER RMI$_BLKLOC = '00001076'X ! blocking ASTs queued (local) PARAMETER RMI$_BLKIN = '00001077'X ! blocking ASTs queued (incoming) PARAMETER RMI$_BLKOUT = '00001078'X ! blocking ASTs queued (outgoing) PARAMETER RMI$_DIRIN = '00001079'X ! directory operations (incoming) PARAMETER RMI$_DIROUT = '0000107A'X ! directory operations (outgoing) PARAMETER RMI$_DLCKMSGS = '0000107B'X ! deadlock detection messages (in & out) PARAMETER RMI$_SCS = '0000107C'X ! All SCS information PARAMETER RMI$_SYSTIME = '0000107D'X ! Current system time PARAMETER RMI$_MSCP_REQUEST = '0000107E'X ! IO request rate to the MSCP server PARAMETER RMI$_MSCP_READ = '0000107F'X ! Read request rate to the MSCP server PARAMETER RMI$_MSCP_WRITE = '00001080'X ! Write request rate to the MSCP server PARAMETER RMI$_MSCP_FRAGMENT = '00001081'X ! Rate at which I/O's are fragmented PARAMETER RMI$_MSCP_SPLIT = '00001082'X ! Rate at which I/O's are split PARAMETER RMI$_MSCP_BUFWAIT = '00001083'X ! Rate at which incoming requests have to wait for a bu PARAMETER RMI$_MSCP_SIZE1 = '00001084'X ! I/O rate for sizes 1-2 blocks PARAMETER RMI$_MSCP_SIZE2 = '00001085'X ! I/O rate for sizes 2-3 blocks PARAMETER RMI$_MSCP_SIZE3 = '00001086'X ! I/O rate for sizes 4-7 blocks PARAMETER RMI$_MSCP_SIZE4 = '00001087'X ! I/O rate for sizes 8-15 blocks PARAMETER RMI$_MSCP_SIZE5 = '00001088'X ! I/O rate for sizes 16-31 blocks PARAMETER RMI$_MSCP_SIZE6 = '00001089'X ! I/O rate for sizes 32-63 blocks PARAMETER RMI$_MSCP_SIZE7 = '0000108A'X ! I/O rate for sizes 64-127 blocks PARAMETER RMI$_MSCP_ALL = '0000108B'X ! Dummy item to collect all MSCP server class items PARAMETER RMI$_DDTM_STARTS = '0000108C'X ! Local Transaction starts PARAMETER RMI$_DDTM_PREPARES = '0000108D'X ! Local Transaction prepare event PARAMETER RMI$_DDTM_ONE_PHASE = '0000108E'X ! Transaction ONE_PHASE commit event PARAMETER RMI$_DDTM_COMMITS = '0000108F'X ! Local Transaction commit event (sum of phase 1 and 2 ! Local Transaction commit event (sum of phase 1 and 2 commit PARAMETER RMI$_DDTM_ABORTS = '00001090'X ! Local Transaction abort event PARAMETER RMI$_DDTM_ENDS = '00001091'X ! Local Transaction ends PARAMETER RMI$_DDTM_BRANCHS = '00001092'X ! Start branch event PARAMETER RMI$_DDTM_ADDS = '00001093'X ! Add branch event PARAMETER RMI$_DDTM_BUCKETS1 = '00001094'X ! TPS rate for < 1 PARAMETER RMI$_DDTM_BUCKETS2 = '00001095'X ! TPS rate for 1-2 PARAMETER RMI$_DDTM_BUCKETS3 = '00001096'X ! TPS rate for 2-3 PARAMETER RMI$_DDTM_BUCKETS4 = '00001097'X ! TPS rate for 3-4 PARAMETER RMI$_DDTM_BUCKETS5 = '00001098'X ! TPS rate for 4-5 PARAMETER RMI$_DDTM_BUCKETS6 = '00001099'X ! TPS rate for > 6 PARAMETER RMI$_DDTM_ALL = '0000109A'X ! Dummy item to collect all TRANSACTION class items PARAMETER RMI$_VECTORP = '0000109B'X ! Vector Processor tics scheduled PARAMETER RMI$_VBYTE_READ = '0000109C'X ! VBS bytes read PARAMETER RMI$_VBYTE_WRITE = '0000109D'X ! VBS bytes written PARAMETER RMI$_VVBS_TRAN = '0000109E'X PARAMETER RMI$_VRBS_TRAN = '0000109F'X PARAMETER RMI$_VDIO_SEL = '000010A0'X PARAMETER RMI$_VDIOMAP_ALLOC = '000010A1'X PARAMETER RMI$_VRBS_AVAIL = '000010A2'X PARAMETER RMI$_VSEL_FAIL = '000010A3'X PARAMETER RMI$_VVBSM_HIT = '000010A4'X PARAMETER RMI$_VVBSM_CACHE = '000010A5'X PARAMETER RMI$_VFLUIDBAL = '000010A6'X PARAMETER RMI$_VRECOPY = '000010A7'X PARAMETER RMI$_VCPUTICKS = '000010A8'X PARAMETER RMI$_MSCP_EVERYTHING = '000010A9'X ! All MSCP server class items including the NEW item ! All MSCP server class items including the NEW items not in PARAMETER RMI$_TMSCP_EVERYTHING = '000010AA'X ! All TMSCP server class items PARAMETER RMI$_DDTM_TWOPHASE_ACKRCV = '000010AB'X ! # of 2 PHASE commit ack msg rcvd PARAMETER RMI$_DDTM_TWOPHASE_ACKSNT = '000010AC'X ! # of 2 PHASE commit ack msg sent PARAMETER RMI$_DDTM_TWOPHASE_CANRCV = '000010AD'X ! # of 2 PHASE commit cancel msg rcvd PARAMETER RMI$_DDTM_TWOPHASE_CANSNT = '000010AE'X ! # of 2 PHASE commit cancel msg sent PARAMETER RMI$_DDTM_TWOPHASE_RDYRCV = '000010AF'X ! # of 2 PHASE commit ready msg rcvd PARAMETER RMI$_DDTM_TWOPHASE_RDYSNT = '000010B0'X ! # of 2 PHASE commit ready msg sent PARAMETER RMI$_DDTM_TWOPHASE_REQRCV = '000010B1'X ! # of 2 PHASE commit request msg rcvd PARAMETER RMI$_DDTM_TWOPHASE_REQSNT = '000010B2'X ! # of 2 PHASE commit request msg sent PARAMETER RMI$_DDTM_TWOPHASE_COMMITS = '000010B3'X ! Total # of phase 2 transitions PARAMETER RMI$_DDTM_DECLARES = '000010B4'X ! Total # of $DECLARE_RMs PARAMETER RMI$_DDTM_JOINS = '000010B5'X ! Total # of $JOIN_RMs PARAMETER RMI$_DDTM_FORGETS = '000010B6'X ! Total # of $FORGET_RMs PARAMETER RMI$_DDTM_SEQNO = '000010B7'X ! Total # of XCBs created PARAMETER RMI$_DDTM_LOG_COMMITS = '000010B8'X ! # of Commit records written PARAMETER RMI$_DDTM_LOG_PREPARES = '000010B9'X ! # of Prepare records written PARAMETER RMI$_DDTM_LOG_FORGETS = '000010BA'X ! # of Forget records written PARAMETER RMI$_DDTM_WRITES_STARTED = '000010BB'X ! # of Writes started PARAMETER RMI$_DDTM_WRITES_FORKED = '000010BC'X ! # of forked writes PARAMETER RMI$_DDTM_BAD_TYPECODE = '000010BD'X ! # of bad msg typecodes rcvd PARAMETER RMI$_DDTM_BAD_LINKS = '000010BE'X ! # of bad msg links rcvd PARAMETER RMI$_DDTM_FOR_UNLINKS = '000010BF'X ! # of forced unlinks PARAMETER RMI$_DDTM_VOL_UNLINKS = '000010C0'X ! # of voluntary unlinks PARAMETER RMI$_DDTM_DISC_COMP = '000010C1'X ! # of disconnect complete events PARAMETER RMI$_DDTM_BAD_PARTS = '000010C2'X ! # of invalid part ids found PARAMETER RMI$_LCKMGR_CPU = '000010C3'X ! The ID of the cpu on which the lock manager runs. PARAMETER RMI$_LCKMGR_PID = '000010C4'X ! Process ID of the lock manager process. PARAMETER RMI$_LCKMGR_REQCNT = '000010C5'X ! Accumulated count of requests handled by the lock ma PARAMETER RMI$_LCKMGR_REQTIME = '000010C6'X ! Accumulated time spent by the lock manager servicin ! Accumulated time spent by the lock manager servicing reques PARAMETER RMI$_LCKMGR_SPINCNT = '000010C7'X ! The number of times the lock manager entered a spin PARAMETER RMI$_LCKMGR_SPINTIME = '000010C8'X ! Spin time in cycles, the lock manager spent in spi PARAMETER RMI$_LOCK_MAX = '000010C9'X ! The length of the Lock ID Table. PARAMETER RMI$_LPZ_PAKSIZ = '000010CA'X ! Its the lock manager's pool zone packet size. PARAMETER RMI$_LPZ_PAGCNT = '000010CB'X ! Number of pages currently in the lock manager's pool zo PARAMETER RMI$_LPZ_MAXPAG = '000010CC'X ! Its the maximum number of pages in the lock manager's p ! Its the maximum number of pages in the lock manager's pool PARAMETER RMI$_LPZ_FREEPGCNT = '000010CD'X ! The number of free pages currently in the lock manag ! The number of free pages currently in the lock manager's po PARAMETER RMI$_LPZ_HITS = '000010CE'X ! The number of hits for the lock manager's pool zone. PARAMETER RMI$_LPZ_MISSES = '000010CF'X ! The number of misses for the lock manager's pool zone. PARAMETER RMI$_LPZ_EXPCNT = '000010D0'X ! The number of expansions of the lock manager's pool zone. PARAMETER RMI$_LPZ_ALLOCF = '000010D1'X ! The number of failed allocations from the lock manager' ! The number of failed allocations from the lock manager's po PARAMETER RMI$_LPZ_ALLOC2 = '000010D2'X ! The number of allocations from other than the first pag ! The number of allocations from other than the first page of PARAMETER RMI$_LPZ_EMPTY = '000010D3'X ! Its the number of empty pages in the lock manager's pool ! Its the number of empty pages in the lock manager's pool zo PARAMETER RMI$_RML_ACQUIRE = '000010D4'X ! System-wide count of lock trees moved to this node. PARAMETER RMI$_RML_BETTER = '000010D5'X ! Count of lock trees moved from this node to a cluster n ! Count of lock trees moved from this node to a cluster node PARAMETER RMI$_RML_MORE_ACT = '000010D6'X ! Count of lock trees moved from this node due to a hig ! Count of lock trees moved from this node due to a higher lo PARAMETER RMI$_RML_MSGRCV = '000010D7'X ! Count of remaster messages received by this node. PARAMETER RMI$_RML_MSGSENT = '000010D8'X ! Count of remaster messages sent from this node. PARAMETER RMI$_RML_NOQUOTA = '000010D9'X ! Count of remaster operations which failed due to a lac ! Count of remaster operations which failed due to a lack of PARAMETER RMI$_RML_NOTAKER = '000010DA'X ! Count of remaster operations which were proposed and d ! Count of remaster operations which were proposed and declin PARAMETER RMI$_RML_OPCNT = '000010DB'X ! Count of remaster operations which have been completed. PARAMETER RMI$_RML_RBLDMSGRCV = '000010DC'X ! Count of remaster rebuild messages received by this PARAMETER RMI$_RML_RBLDMSGSENT = '000010DD'X ! Count of remaster rebuild messages sent from this PARAMETER RMI$_RML_SINGLE = '000010DE'X ! Count of lock trees moved from this node to another clu ! Count of lock trees moved from this node to another cluster ! node which is the only node with locks remaining on the tre PARAMETER RMI$_RML_UNLOAD = '000010DF'X ! Count of lock trees moved from this node. PARAMETER RMI$_RESERVEDEXE1 = '000010E0'X ! Reserved EXE items PARAMETER RMI$_RESERVEDEXE2 = '000010E1'X ! Reserved EXE items PARAMETER RMI$_RESERVEDEXE3 = '000010E2'X ! Reserved EXE items PARAMETER RMI$_RESERVEDEXE4 = '000010E3'X ! Reserved EXE items PARAMETER RMI$_RESERVEDEXE5 = '000010E4'X ! Reserved EXE items PARAMETER RMI$_RESERVEDEXE6 = '000010E5'X ! Reserved EXE items PARAMETER RMI$_RESERVEDEXE7 = '000010E6'X ! Reserved EXE items PARAMETER RMI$_RESERVEDEXE8 = '000010E7'X ! Reserved EXE items PARAMETER RMI$_RESERVEDEXE9 = '000010E8'X ! Reserved EXE items PARAMETER RMI$_RESERVEDEXE10 = '000010E9'X ! Reserved EXE items PARAMETER RMI$_RESERVEDEXE11 = '000010EA'X ! Reserved EXE items PARAMETER RMI$_RESERVEDEXE12 = '000010EB'X ! Reserved EXE items PARAMETER RMI$_RESERVEDEXE13 = '000010EC'X ! Reserved EXE items PARAMETER RMI$_RESERVEDEXE14 = '000010ED'X ! Reserved EXE items PARAMETER RMI$_RESERVEDEXE15 = '000010EE'X ! Reserved EXE items PARAMETER RMI$_RESERVEDEXE16 = '000010EF'X ! Reserved EXE items PARAMETER RMI$_LASTEXE = '000010F0'X ! Last item in the EXE table ! ! These next items are located in an executive writable page in memory ! PARAMETER RMI$_ACCESS = '000020F0'X ! number of file accesses PARAMETER RMI$_ALLOC = '000020F1'X ! number of file extends PARAMETER RMI$_FCPCREATE = '000020F2'X ! number of file creations PARAMETER RMI$_VOLWAIT = '000020F3'X ! # of times XQP waited for volume lock PARAMETER RMI$_FCPTURN = '000020F4'X ! number of window turns PARAMETER RMI$_FCPERASE = '000020F5'X ! number of erase calls PARAMETER RMI$_OPENS = '000020F6'X ! number of file opens PARAMETER RMI$_FIDHIT = '000020F7'X ! count of File Id cache hits PARAMETER RMI$_FIDMISS = '000020F8'X ! count of File Id cache misses PARAMETER RMI$_FILHDR_HIT = '000020F9'X ! count of File header cache hits PARAMETER RMI$_DIRFCB_HIT = '000020FA'X ! count of Directory block cache hits PARAMETER RMI$_DIRFCB_MISS = '000020FB'X ! count of Directory block cache misses PARAMETER RMI$_DIRDATA_HIT = '000020FC'X ! count of Directory data cache hits PARAMETER RMI$_EXTHIT = '000020FD'X ! count of Extent cache hits PARAMETER RMI$_EXTMISS = '000020FE'X ! count of Extent cache misses PARAMETER RMI$_QUOHIT = '000020FF'X ! count of Quota cache hits PARAMETER RMI$_QUOMISS = '00002100'X ! count of Quota cache misses PARAMETER RMI$_STORAGMAP_HIT = '00002101'X ! count of storage bitmap cache hits PARAMETER RMI$_VOLLCK = '00002102'X ! Volume synch locks PARAMETER RMI$_SYNCHLCK = '00002103'X ! directory and file synch locks PARAMETER RMI$_SYNCHWAIT = '00002104'X ! # of times XQP waited for a directory or file synch lock PARAMETER RMI$_ACCLCK = '00002105'X ! access locks PARAMETER RMI$_XQPCACHEWAIT = '00002106'X ! # of times XQP had to wait for free space in a cache PARAMETER RMI$_DIRDATA_MISS = '00002107'X ! count of Directory data cache misses PARAMETER RMI$_FILHDR_MISS = '00002108'X ! count of File header cache misses PARAMETER RMI$_STORAGMAP_MISS = '00002109'X ! count of storage bitmap cache misses PARAMETER RMI$_RESERVEDEWS1 = '0000210A'X ! Reserved EWS items PARAMETER RMI$_RESERVEDEWS2 = '0000210B'X ! Reserved EWS items PARAMETER RMI$_RESERVEDEWS3 = '0000210C'X ! Reserved EWS items PARAMETER RMI$_RESERVEDEWS4 = '0000210D'X ! Reserved EWS items PARAMETER RMI$_RESERVEDEWS5 = '0000210E'X ! Reserved EWS items PARAMETER RMI$_RESERVEDEWS6 = '0000210F'X ! Reserved EWS items PARAMETER RMI$_RESERVEDEWS7 = '00002110'X ! Reserved EWS items PARAMETER RMI$_RESERVEDEWS8 = '00002111'X ! Reserved EWS items PARAMETER RMI$_RESERVEDEWS9 = '00002112'X ! Reserved EWS items PARAMETER RMI$_RESERVEDEWS10 = '00002113'X ! Reserved EWS items PARAMETER RMI$_RESERVEDEWS11 = '00002114'X ! Reserved EWS items PARAMETER RMI$_RESERVEDEWS12 = '00002115'X ! Reserved EWS items PARAMETER RMI$_RESERVEDEWS13 = '00002116'X ! Reserved EWS items PARAMETER RMI$_RESERVEDEWS14 = '00002117'X ! Reserved EWS items PARAMETER RMI$_RESERVEDEWS15 = '00002118'X ! Reserved EWS items PARAMETER RMI$_RESERVEDEWS16 = '00002119'X ! Reserved EWS items PARAMETER RMI$_RESERVEDEWS17 = '0000211A'X ! Reserved EWS items PARAMETER RMI$_RESERVEDEWS18 = '0000211B'X ! Reserved EWS items PARAMETER RMI$_RESERVEDEWS19 = '0000211C'X ! Reserved EWS items PARAMETER RMI$_RESERVEDEWS20 = '0000211D'X ! Reserved EWS items PARAMETER RMI$_RESERVEDEWS21 = '0000211E'X ! Reserved EWS items PARAMETER RMI$_RESERVEDEWS22 = '0000211F'X ! Reserved EWS items PARAMETER RMI$_RESERVEDEWS23 = '00002120'X ! Reserved EWS items PARAMETER RMI$_RESERVEDEWS24 = '00002121'X ! Reserved EWS items PARAMETER RMI$_RESERVEDEWS25 = '00002122'X ! Reserved EWS items PARAMETER RMI$_RESERVEDEWS26 = '00002123'X ! Reserved EWS items PARAMETER RMI$_RESERVEDEWS27 = '00002124'X ! Reserved EWS items PARAMETER RMI$_RESERVEDEWS28 = '00002125'X ! Reserved EWS items PARAMETER RMI$_RESERVEDEWS29 = '00002126'X ! Reserved EWS items PARAMETER RMI$_RESERVEDEWS30 = '00002127'X ! Reserved EWS items PARAMETER RMI$_RESERVEDEWS31 = '00002128'X ! Reserved EWS items PARAMETER RMI$_RESERVEDEWS32 = '00002129'X ! Reserved EWS items PARAMETER RMI$_RESERVEDEWS33 = '0000212A'X ! Reserved EWS items PARAMETER RMI$_RESERVEDEWS34 = '0000212B'X ! Reserved EWS items PARAMETER RMI$_RESERVEDEWS35 = '0000212C'X ! Reserved EWS items PARAMETER RMI$_RESERVEDEWS36 = '0000212D'X ! Reserved EWS items PARAMETER RMI$_RESERVEDEWS37 = '0000212E'X ! Reserved EWS items PARAMETER RMI$_RESERVEDEWS38 = '0000212F'X ! Reserved EWS items PARAMETER RMI$_RESERVEDEWS39 = '00002130'X ! Reserved EWS items PARAMETER RMI$_RESERVEDEWS40 = '00002131'X ! Reserved EWS items PARAMETER RMI$_RESERVEDEWS41 = '00002132'X ! Reserved EWS items PARAMETER RMI$_RESERVEDEWS42 = '00002133'X ! Reserved EWS items PARAMETER RMI$_RESERVEDEWS43 = '00002134'X ! Reserved EWS items PARAMETER RMI$_RESERVEDEWS44 = '00002135'X ! Reserved EWS items PARAMETER RMI$_RESERVEDEWS45 = '00002136'X ! Reserved EWS items PARAMETER RMI$_RESERVEDEWS46 = '00002137'X ! Reserved EWS items PARAMETER RMI$_RESERVEDEWS47 = '00002138'X ! Reserved EWS items PARAMETER RMI$_RESERVEDEWS48 = '00002139'X ! Reserved EWS items PARAMETER RMI$_RESERVEDEWS49 = '0000213A'X ! Reserved EWS items PARAMETER RMI$_RESERVEDEWS50 = '0000213B'X ! Reserved EWS items PARAMETER RMI$_RESERVEDEWS51 = '0000213C'X ! Reserved EWS items PARAMETER RMI$_RESERVEDEWS52 = '0000213D'X ! Reserved EWS items PARAMETER RMI$_RESERVEDEWS53 = '0000213E'X ! Reserved EWS items PARAMETER RMI$_RESERVEDEWS54 = '0000213F'X ! Reserved EWS items PARAMETER RMI$_RESERVEDEWS55 = '00002140'X ! Reserved EWS items PARAMETER RMI$_RESERVEDEWS56 = '00002141'X ! Reserved EWS items PARAMETER RMI$_RESERVEDEWS57 = '00002142'X ! Reserved EWS items PARAMETER RMI$_RESERVEDEWS58 = '00002143'X ! Reserved EWS items PARAMETER RMI$_RESERVEDEWS59 = '00002144'X ! Reserved EWS items PARAMETER RMI$_RESERVEDEWS60 = '00002145'X ! Reserved EWS items PARAMETER RMI$_RESERVEDEWS61 = '00002146'X ! Reserved EWS items PARAMETER RMI$_RESERVEDEWS62 = '00002147'X ! Reserved EWS items PARAMETER RMI$_RESERVEDEWS63 = '00002148'X ! Reserved EWS items PARAMETER RMI$_RESERVEDEWS64 = '00002149'X ! Reserved EWS items PARAMETER RMI$_RESERVEDEWS65 = '0000214A'X ! Reserved EWS items PARAMETER RMI$_RESERVEDEWS66 = '0000214B'X ! Reserved EWS items PARAMETER RMI$_RESERVEDEWS67 = '0000214C'X ! Reserved EWS items PARAMETER RMI$_RESERVEDEWS68 = '0000214D'X ! Reserved EWS items PARAMETER RMI$_RESERVEDEWS69 = '0000214E'X ! Reserved EWS items PARAMETER RMI$_RESERVEDEWS70 = '0000214F'X ! Reserved EWS items PARAMETER RMI$_RESERVEDEWS71 = '00002150'X ! Reserved EWS items PARAMETER RMI$_RESERVEDEWS72 = '00002151'X ! Reserved EWS items PARAMETER RMI$_RESERVEDEWS73 = '00002152'X ! Reserved EWS items PARAMETER RMI$_RESERVEDEWS74 = '00002153'X ! Reserved EWS items PARAMETER RMI$_RESERVEDEWS75 = '00002154'X ! Reserved EWS items PARAMETER RMI$_RESERVEDEWS76 = '00002155'X ! Reserved EWS items PARAMETER RMI$_RESERVEDEWS77 = '00002156'X ! Reserved EWS items PARAMETER RMI$_RESERVEDEWS78 = '00002157'X ! Reserved EWS items PARAMETER RMI$_RESERVEDEWS79 = '00002158'X ! Reserved EWS items PARAMETER RMI$_RESERVEDEWS80 = '00002159'X ! Reserved EWS items PARAMETER RMI$_RESERVEDEWS81 = '0000215A'X ! Reserved EWS items PARAMETER RMI$_RESERVEDEWS82 = '0000215B'X ! Reserved EWS items PARAMETER RMI$_RESERVEDEWS83 = '0000215C'X ! Reserved EWS items PARAMETER RMI$_RESERVEDEWS84 = '0000215D'X ! Reserved EWS items PARAMETER RMI$_RESERVEDEWS85 = '0000215E'X ! Reserved EWS items PARAMETER RMI$_RESERVEDEWS86 = '0000215F'X ! Reserved EWS items PARAMETER RMI$_RESERVEDEWS87 = '00002160'X ! Reserved EWS items PARAMETER RMI$_RESERVEDEWS88 = '00002161'X ! Reserved EWS items PARAMETER RMI$_RESERVEDEWS89 = '00002162'X ! Reserved EWS items PARAMETER RMI$_RESERVEDEWS90 = '00002163'X ! Reserved EWS items PARAMETER RMI$_RESERVEDEWS91 = '00002164'X ! Reserved EWS items PARAMETER RMI$_RESERVEDEWS92 = '00002165'X ! Reserved EWS items PARAMETER RMI$_RESERVEDEWS93 = '00002166'X ! Reserved EWS items PARAMETER RMI$_RESERVEDEWS94 = '00002167'X ! Reserved EWS items PARAMETER RMI$_RESERVEDEWS95 = '00002168'X ! Reserved EWS items PARAMETER RMI$_RESERVEDEWS96 = '00002169'X ! Reserved EWS items PARAMETER RMI$_RESERVEDEWS97 = '0000216A'X ! Reserved EWS items PARAMETER RMI$_LASTEWS = '0000216B'X ! Last item in the exec writable table ! ! Begin monitor specific data items. The items listed below are ! NOT collected by the RMI as individual items. Some are NOT collected ! at all but are computed by MONITOR. ! PARAMETER RMI$_FIDHITPCNT = '0000316B'X ! percentage of file id cache hits/hits+misses PARAMETER RMI$_FILHDR_HITPCNT = '0000316C'X ! percentage of file header cache hits/hits+misses PARAMETER RMI$_DIRFCB_HITPCNT = '0000316D'X ! percentage of directory block cache hits/hits+misses PARAMETER RMI$_DIRDATA_HITPCNT = '0000316E'X ! percentage of directory data cache hits/hits+misses PARAMETER RMI$_EXTHITPCNT = '0000316F'X ! percentage of extent cache hits/hits+misses PARAMETER RMI$_QUOHITPCNT = '00003170'X ! percentage of quota cache hits/hits+misses PARAMETER RMI$_STORAGMAP_HITPCNT = '00003171'X ! percentage of storage map cache hits/hits+misses PARAMETER RMI$_OPCNT = '00003172'X ! disk io operation count PARAMETER RMI$_IOQUELEN = '00003173'X ! disk io queue length PARAMETER RMI$_IOAQUELEN = '00003174'X ! Accurate disk io queue length PARAMETER RMI$_DISKRESPTIM = '00003175'X ! disk io response time PARAMETER RMI$_JNLIOCNT = '00003176'X ! journaling io operation count (for disks) PARAMETER RMI$_JDNQLEN = '00003177'X ! jdevice normal io queue length PARAMETER RMI$_JDWQLEN = '00003178'X ! jdevice wait irp queue length PARAMETER RMI$_JDFQLEN = '00003179'X ! jdevice force io queue length PARAMETER RMI$_JDEXCNT = '0000317A'X ! jdevice extend count PARAMETER RMI$_JNLWRTSS = '0000317B'X ! obsolete PARAMETER RMI$_JNLBUFWR = '0000317C'X ! obsolete PARAMETER RMI$_DGSENT = '0000317D'X ! SCS application datagrams sent PARAMETER RMI$_DGRCVD = '0000317E'X ! SCS application datagrams received PARAMETER RMI$_DGDISCARD = '0000317F'X ! SCS application datagrams discarded PARAMETER RMI$_MSGSENT = '00003180'X ! SCS application messages sent PARAMETER RMI$_MSGRCVD = '00003181'X ! SCS application messages received PARAMETER RMI$_SNDATS = '00003182'X ! SCS block send datas initiated PARAMETER RMI$_KBYTSENT = '00003183'X ! SCS kbytes sent via send datas PARAMETER RMI$_REQDATS = '00003184'X ! SCS block request datas initiated PARAMETER RMI$_KBYTREQD = '00003185'X ! SCS kbytes received via request datas PARAMETER RMI$_KBYTMAPD = '00003186'X ! SCS kbytes mapped for block transfer PARAMETER RMI$_QCR_CNT = '00003187'X ! SCS times connection queued for send credit PARAMETER RMI$_QBDT_CNT = '00003188'X ! SCS times connection queued for buffer descriptor PARAMETER RMI$_DIRLOOK = '00003189'X ! directory lookups PARAMETER RMI$_DIRINS = '0000318A'X ! directory inserts PARAMETER RMI$_DIRDEL = '0000318B'X ! directory deletes PARAMETER RMI$_PACKETS = '0000318C'X ! Ethernet packets/second PARAMETER RMI$_KBYTES = '0000318D'X ! Kbytes/second PARAMETER RMI$_PACKETSIZE = '0000318E'X ! Packets size (bytes) PARAMETER RMI$_MPACKETS = '0000318F'X ! Multicast packets/second PARAMETER RMI$_MKBYTES = '00003190'X ! Multicast Kbytes/second PARAMETER RMI$_MPACKETSIZE = '00003191'X ! Multicast packet size (bytes) PARAMETER RMI$_SINGLECOLL = '00003192'X ! Transmit single collision detected PARAMETER RMI$_MULTICOLL = '00003193'X ! Transmit multi collisions detected PARAMETER RMI$_INITDEFER = '00003194'X ! Transmit initially deferred PARAMETER RMI$_INTERNALBUFERR = '00003195'X ! Receive internal buffer error PARAMETER RMI$_LOCBUFERR = '00003196'X ! Receive local buffer error PARAMETER RMI$_BUFFUNAVAIL = '00003197'X ! System buffer unavailable PARAMETER RMI$_FILLER = '00003198'X ! Dummy pad item PARAMETER RMI$_RESERVEDMON1 = '00003199'X ! Reserved MON items PARAMETER RMI$_RESERVEDMON2 = '0000319A'X ! Reserved MON items PARAMETER RMI$_RESERVEDMON3 = '0000319B'X ! Reserved MON items PARAMETER RMI$_RESERVEDMON4 = '0000319C'X ! Reserved MON items PARAMETER RMI$_RESERVEDMON5 = '0000319D'X ! Reserved MON items PARAMETER RMI$_RESERVEDMON6 = '0000319E'X ! Reserved MON items PARAMETER RMI$_RESERVEDMON7 = '0000319F'X ! Reserved MON items PARAMETER RMI$_RESERVEDMON8 = '000031A0'X ! Reserved MON items PARAMETER RMI$_RESERVEDMON9 = '000031A1'X ! Reserved MON items PARAMETER RMI$_RESERVEDMON10 = '000031A2'X ! Reserved MON items PARAMETER RMI$_RESERVEDMON11 = '000031A3'X ! Reserved MON items PARAMETER RMI$_RESERVEDMON12 = '000031A4'X ! Reserved MON items PARAMETER RMI$_RESERVEDMON13 = '000031A5'X ! Reserved MON items PARAMETER RMI$_RESERVEDMON14 = '000031A6'X ! Reserved MON items PARAMETER RMI$_RESERVEDMON15 = '000031A7'X ! Reserved MON items PARAMETER RMI$_RESERVEDMON16 = '000031A8'X ! Reserved MON items PARAMETER RMI$_RESERVEDMON17 = '000031A9'X ! Reserved MON items PARAMETER RMI$_RESERVEDMON18 = '000031AA'X ! Reserved MON items PARAMETER RMI$_RESERVEDMON19 = '000031AB'X ! Reserved MON items PARAMETER RMI$_RESERVEDMON20 = '000031AC'X ! Reserved MON items PARAMETER RMI$_RESERVEDMON21 = '000031AD'X ! Reserved MON items PARAMETER RMI$_RESERVEDMON22 = '000031AE'X ! Reserved MON items PARAMETER RMI$_RESERVEDMON23 = '000031AF'X ! Reserved MON items PARAMETER RMI$_RESERVEDMON24 = '000031B0'X ! Reserved MON items PARAMETER RMI$_RESERVEDMON25 = '000031B1'X ! Reserved MON items PARAMETER RMI$_RESERVEDMON26 = '000031B2'X ! Reserved MON items PARAMETER RMI$_RESERVEDMON27 = '000031B3'X ! Reserved MON items PARAMETER RMI$_RESERVEDMON28 = '000031B4'X ! Reserved MON items PARAMETER RMI$_RESERVEDMON29 = '000031B5'X ! Reserved MON items PARAMETER RMI$_RESERVEDMON30 = '000031B6'X ! Reserved MON items PARAMETER RMI$_RESERVEDMON31 = '000031B7'X ! Reserved MON items PARAMETER RMI$_RESERVEDMON32 = '000031B8'X ! Reserved MON items PARAMETER RMI$_RESERVEDMON33 = '000031B9'X ! Reserved MON items PARAMETER RMI$_RESERVEDMON34 = '000031BA'X ! Reserved MON items PARAMETER RMI$_RESERVEDMON35 = '000031BB'X ! Reserved MON items PARAMETER RMI$_RESERVEDMON36 = '000031BC'X ! Reserved MON items PARAMETER RMI$_RESERVEDMON37 = '000031BD'X ! Reserved MON items PARAMETER RMI$_RESERVEDMON38 = '000031BE'X ! Reserved MON items PARAMETER RMI$_RESERVEDMON39 = '000031BF'X ! Reserved MON items PARAMETER RMI$_RESERVEDMON40 = '000031C0'X ! Reserved MON items PARAMETER RMI$_RESERVEDMON41 = '000031C1'X ! Reserved MON items PARAMETER RMI$_RESERVEDMON42 = '000031C2'X ! Reserved MON items PARAMETER RMI$_RESERVEDMON43 = '000031C3'X ! Reserved MON items PARAMETER RMI$_RESERVEDMON44 = '000031C4'X ! Reserved MON items PARAMETER RMI$_RESERVEDMON45 = '000031C5'X ! Reserved MON items PARAMETER RMI$_RESERVEDMON46 = '000031C6'X ! Reserved MON items PARAMETER RMI$_RESERVEDMON47 = '000031C7'X ! Reserved MON items PARAMETER RMI$_RESERVEDMON48 = '000031C8'X ! Reserved MON items PARAMETER RMI$_RESERVEDMON49 = '000031C9'X ! Reserved MON items PARAMETER RMI$_RESERVEDMON50 = '000031CA'X ! Reserved MON items PARAMETER RMI$_RESERVEDMON51 = '000031CB'X ! Reserved MON items PARAMETER RMI$_RESERVEDMON52 = '000031CC'X ! Reserved MON items PARAMETER RMI$_RESERVEDMON53 = '000031CD'X ! Reserved MON items PARAMETER RMI$_RESERVEDMON54 = '000031CE'X ! Reserved MON items PARAMETER RMI$_RESERVEDMON55 = '000031CF'X ! Reserved MON items PARAMETER RMI$_RESERVEDMON56 = '000031D0'X ! Reserved MON items PARAMETER RMI$_RESERVEDMON57 = '000031D1'X ! Reserved MON items PARAMETER RMI$_RESERVEDMON58 = '000031D2'X ! Reserved MON items PARAMETER RMI$_RESERVEDMON59 = '000031D3'X ! Reserved MON items PARAMETER RMI$_RESERVEDMON60 = '000031D4'X ! Reserved MON items PARAMETER RMI$_RESERVEDMON61 = '000031D5'X ! Reserved MON items PARAMETER RMI$_RESERVEDMON62 = '000031D6'X ! Reserved MON items PARAMETER RMI$_RESERVEDMON63 = '000031D7'X ! Reserved MON items PARAMETER RMI$_RESERVEDMON64 = '000031D8'X ! Reserved MON items PARAMETER RMI$_RESERVEDMON65 = '000031D9'X ! Reserved MON items PARAMETER RMI$_RESERVEDMON66 = '000031DA'X ! Reserved MON items PARAMETER RMI$_RESERVEDMON67 = '000031DB'X ! Reserved MON items PARAMETER RMI$_RESERVEDMON68 = '000031DC'X ! Reserved MON items PARAMETER RMI$_RESERVEDMON69 = '000031DD'X ! Reserved MON items PARAMETER RMI$_RESERVEDMON70 = '000031DE'X ! Reserved MON items PARAMETER RMI$_RESERVEDMON71 = '000031DF'X ! Reserved MON items PARAMETER RMI$_RESERVEDMON72 = '000031E0'X ! Reserved MON items PARAMETER RMI$_RESERVEDMON73 = '000031E1'X ! Reserved MON items PARAMETER RMI$_RESERVEDMON74 = '000031E2'X ! Reserved MON items PARAMETER RMI$_RESERVEDMON75 = '000031E3'X ! Reserved MON items PARAMETER RMI$_RESERVEDMON76 = '000031E4'X ! Reserved MON items PARAMETER RMI$_RESERVEDMON77 = '000031E5'X ! Reserved MON items PARAMETER RMI$_RESERVEDMON78 = '000031E6'X ! Reserved MON items PARAMETER RMI$_RESERVEDMON79 = '000031E7'X ! Reserved MON items PARAMETER RMI$_RESERVEDMON80 = '000031E8'X ! Reserved MON items PARAMETER RMI$_RESERVEDMON81 = '000031E9'X ! Reserved MON items PARAMETER RMI$_RESERVEDMON82 = '000031EA'X ! Reserved MON items PARAMETER RMI$_RESERVEDMON83 = '000031EB'X ! Reserved MON items PARAMETER RMI$_RESERVEDMON84 = '000031EC'X ! Reserved MON items PARAMETER RMI$_RESERVEDMON85 = '000031ED'X ! Reserved MON items PARAMETER RMI$_RESERVEDMON86 = '000031EE'X ! Reserved MON items PARAMETER RMI$_RESERVEDMON87 = '000031EF'X ! Reserved MON items PARAMETER RMI$_RESERVEDMON88 = '000031F0'X ! Reserved MON items PARAMETER RMI$_RESERVEDMON89 = '000031F1'X ! Reserved MON items PARAMETER RMI$_RESERVEDMON90 = '000031F2'X ! Reserved MON items PARAMETER RMI$_RESERVEDMON91 = '000031F3'X ! Reserved MON items PARAMETER RMI$_RESERVEDMON92 = '000031F4'X ! Reserved MON items PARAMETER RMI$_RESERVEDMON93 = '000031F5'X ! Reserved MON items PARAMETER RMI$_RESERVEDMON94 = '000031F6'X ! Reserved MON items PARAMETER RMI$_RESERVEDMON95 = '000031F7'X ! Reserved MON items PARAMETER RMI$_RESERVEDMON96 = '000031F8'X ! Reserved MON items PARAMETER RMI$_RESERVEDMON97 = '000031F9'X ! Reserved MON items PARAMETER RMI$_RESERVEDMON98 = '000031FA'X ! Reserved MON items PARAMETER RMI$_RESERVEDMON99 = '000031FB'X ! Reserved MON items PARAMETER RMI$_RESERVEDMON100 = '000031FC'X ! Reserved MON items PARAMETER RMI$_LASTMON = '000031FD'X ! Last item in the monitor specific table ! ! Begin items specific to the Monitor RMS class. These items are maintained ! by RMS and collected from a global section with the following naming scheme: ! _RMS$xxxxxxxxyyyyyy where x is the volume lock id and y is the fid of the ! file being monitored. ! PARAMETER RMI$_RMS_STATS = '000041FD'X ! All of the following rms statistics PARAMETER RMI$_SEQGETS = '000041FE'X ! Total # of sequential gets PARAMETER RMI$_KEYGETS = '000041FF'X ! Total # of keyed gets PARAMETER RMI$_RFAGETS = '00004200'X ! Total # of gets by RFA PARAMETER RMI$_GETBYTES = '00004201'X ! Total size in bytes of all GETS PARAMETER RMI$_SEQPUTS = '00004202'X ! Total # of sequential puts PARAMETER RMI$_KEYPUTS = '00004203'X ! Total # of puts by key PARAMETER RMI$_PUTBYTES = '00004204'X ! Total # of bytes put to file PARAMETER RMI$_UPDATES = '00004205'X ! Total # of updates to the file PARAMETER RMI$_UPDATEBYTES = '00004206'X ! Total # of bytes updated in file PARAMETER RMI$_DELETES = '00004207'X ! Total # of deletes to file PARAMETER RMI$_TRUNCATES = '00004208'X ! Total # of times file has been truncated PARAMETER RMI$_TRUNCBLKS = '00004209'X ! Total # of blocks file has been truncated PARAMETER RMI$_SEQFINDS = '0000420A'X ! Total # of sequential finds PARAMETER RMI$_KEYFINDS = '0000420B'X ! Total # of keyed finds PARAMETER RMI$_RFAFINDS = '0000420C'X ! Total # of RFA finds PARAMETER RMI$_READS = '0000420D'X ! Total # of $READS PARAMETER RMI$_READBYTES = '0000420E'X ! Total # of bytes read from $READS PARAMETER RMI$_CONNECTS = '0000420F'X ! Total connect requests PARAMETER RMI$_DISCONNECTS = '00004210'X ! Total disconnect requests PARAMETER RMI$_EXTENDS = '00004211'X ! Total extends PARAMETER RMI$_EXTBLOCKS = '00004212'X ! Total number of blocks file has been extended PARAMETER RMI$_FLUSHES = '00004213'X ! Total number of calls to flush PARAMETER RMI$_REWINDS = '00004214'X ! Total number of calls to REWIND PARAMETER RMI$_WRITES = '00004215'X ! Total number of calls to $WRITE PARAMETER RMI$_WRITEBYTES = '00004216'X ! Total bytes written using $WRITE PARAMETER RMI$_FLCKENQS = '00004217'X ! Total number of file lock ENQ's PARAMETER RMI$_FLCKDEQS = '00004218'X ! Total number of file lock DEQ's PARAMETER RMI$_FLCKCNVS = '00004219'X ! Total number of file lock conversions PARAMETER RMI$_LBLCKENQS = '0000421A'X ! Total number of local buffer lock ENQ's PARAMETER RMI$_LBLCKDEQS = '0000421B'X ! Total number of local buffer lock DEQ's PARAMETER RMI$_LBLCKCNVS = '0000421C'X ! Total number of local buffer lock conversions PARAMETER RMI$_GBLCKENQS = '0000421D'X ! Total number of global buffer lock ENQ's PARAMETER RMI$_GBLCKDEQS = '0000421E'X ! Total number of global buffer lock DEQ's PARAMETER RMI$_GBLCKCNVS = '0000421F'X ! Total number of global buffer lock conversions PARAMETER RMI$_GSLCKENQS = '00004220'X ! Total number of global section lock ENQ's PARAMETER RMI$_GSLCKDEQS = '00004221'X ! Total number of global section lock DEQ's PARAMETER RMI$_GSLCKCNVS = '00004222'X ! Total number of global section lock conversions PARAMETER RMI$_RLCKENQS = '00004223'X ! Total number of record lock ENQ's PARAMETER RMI$_RLCKDEQS = '00004224'X ! Total number of record lock DEQ's PARAMETER RMI$_RLCKCNVS = '00004225'X ! Total number of record lock conversions PARAMETER RMI$_APPLCKENQS = '00004226'X ! Total number of append lock ENQ's PARAMETER RMI$_APPLCKDEQS = '00004227'X ! Total number of append lock DEQ's PARAMETER RMI$_APPLCKCNVS = '00004228'X ! Total number of append lock conversions PARAMETER RMI$_FLBLKASTS = '00004229'X ! Total number of file lock blocking ASTs PARAMETER RMI$_LBLBLKASTS = '0000422A'X ! Total number of local buffer lock blocking ASTs PARAMETER RMI$_GBLBLKASTS = '0000422B'X ! Total number of global buffer lock blocking ASTs PARAMETER RMI$_APPBLKASTS = '0000422C'X ! Total number of shared append lock blocking ASTs PARAMETER RMI$_LCACHEHITS = '0000422D'X ! Total cache hits on buckets in local buffers PARAMETER RMI$_LCACHETRIES = '0000422E'X ! Total cache attempts on buckets in local buffers PARAMETER RMI$_GCACHEHITS = '0000422F'X ! Total cache hits on buckets in global buffers PARAMETER RMI$_GCACHETRIES = '00004230'X ! Total cache attempts on buckets in global buffers PARAMETER RMI$_GBRDIRIOS = '00004231'X ! Total direct IO's causes by global buffer cache reads PARAMETER RMI$_GBWDIRIOS = '00004232'X ! Total direct IO's causes by global buffer cache writes PARAMETER RMI$_LBRDIRIOS = '00004233'X ! Total direct IO's causes by local buffer cache reads PARAMETER RMI$_LBWDIRIOS = '00004234'X ! Total direct IO's causes by local buffer cache writes PARAMETER RMI$_BKTSPLT = '00004235'X ! Total number of 2 bucket splits done for this file PARAMETER RMI$_MBKTSPLT = '00004236'X ! Total number of multi-bucket splits done for this file PARAMETER RMI$_RMSOPENS = '00004237'X ! Total number of times file has been opened PARAMETER RMI$_CLOSES = '00004238'X ! Total number of times file has been closed PARAMETER RMI$_GSBLKASTS = '00004239'X ! Global Section Blocking ASTS PARAMETER RMI$_FLWAITS = '0000423A'X ! File lock ENQs forced to wait PARAMETER RMI$_LBWAITS = '0000423B'X ! Local buffer ENQs forced to wait PARAMETER RMI$_GBWAITS = '0000423C'X ! Global buffer ENQs forced to wait PARAMETER RMI$_GSWAITS = '0000423D'X ! Global section ENQs forced to wait PARAMETER RMI$_RLWAITS = '0000423E'X ! Record lock ENQs forced to wait PARAMETER RMI$_APWAITS = '0000423F'X ! Append lock ENQs forced to wait PARAMETER RMI$_TOTWAITS = '00004240'X ! Total ENQs forced to wait PARAMETER RMI$_OUTBUFQUO = '00004241'X ! Number of times a process runs out of buffer quota PARAMETER RMI$_RMSDEV1 = '00004242'X ! Reserved for RMS development private monitoring PARAMETER RMI$_RMSDEV2 = '00004243'X ! Reserved for RMS development private monitoring PARAMETER RMI$_RMSDEV3 = '00004244'X ! Reserved for RMS development private monitoring PARAMETER RMI$_RMSDEV4 = '00004245'X ! Reserved for RMS development private monitoring PARAMETER RMI$_RMSDEV5 = '00004246'X ! Reserved for RMS development private monitoring PARAMETER RMI$_RMSDEV6 = '00004247'X ! Reserved for RMS development private monitoring PARAMETER RMI$_RMSDEV7 = '00004248'X ! Reserved for RMS development private monitoring PARAMETER RMI$_RMSDEV8 = '00004249'X ! Reserved for RMS development private monitoring PARAMETER RMI$_RMSDEV9 = '0000424A'X ! Reserved for RMS development private monitoring PARAMETER RMI$_RMSDEV10 = '0000424B'X ! Reserved for RMS development private monitoring PARAMETER RMI$_RMSDEV11 = '0000424C'X ! Reserved for RMS development private monitoring PARAMETER RMI$_RMSDEV12 = '0000424D'X ! Reserved for RMS development private monitoring PARAMETER RMI$_RMSDEV13 = '0000424E'X ! Reserved for RMS development private monitoring PARAMETER RMI$_RMSDEV14 = '0000424F'X ! Reserved for RMS development private monitoring PARAMETER RMI$_RMSDEV15 = '00004250'X ! Reserved for RMS development private monitoring PARAMETER RMI$_XQPQIOS = '00004251'X ! Number of XQP operations for this file by RMS PARAMETER RMI$_LCACHEHITPCNT = '00004252'X ! Local RMS buffer hit percent PARAMETER RMI$_GCACHEHITPCNT = '00004253'X ! Global RMS buffer hit percent PARAMETER RMI$_TOTALGET = '00004254'X ! Total $GET call rate PARAMETER RMI$_TOTALPUT = '00004255'X ! Total $PUT call rate PARAMETER RMI$_TOTALFIND = '00004256'X ! Total $FIND call rate PARAMETER RMI$_BYTESGET = '00004257'X ! Bytes per $GET PARAMETER RMI$_BYTESPUT = '00004258'X ! Bytes per $PUT PARAMETER RMI$_BYTESUPDATE = '00004259'X ! Bytes per $UPDATE PARAMETER RMI$_BYTESREAD = '0000425A'X ! Bytes per $READ PARAMETER RMI$_BYTESWRITE = '0000425B'X ! Bytes per $WRITE PARAMETER RMI$_BLOCKSTRUNCATE = '0000425C'X ! Bytes per $TRUNCATE PARAMETER RMI$_BLOCKSEXTEND = '0000425D'X ! Bytes per $EXTEND PARAMETER RMI$_ACTIVE_STREAMS = '0000425E'X ! Active connects to file PARAMETER RMI$_TOTAL_ENQS = '0000425F'X ! Total new ENQs PARAMETER RMI$_TOTAL_DEQS = '00004260'X ! Total DEQs PARAMETER RMI$_TOTAL_CNVS = '00004261'X ! Total ENQ conversions PARAMETER RMI$_TOTAL_BLKAST = '00004262'X ! Total blocking ASTs PARAMETER RMI$_RMS_ORG = '00004263'X ! RMS File org PARAMETER RMI$_INTCOL_GBHSH = '00004264'X ! Interlock collision on global buffer hash table PARAMETER RMI$_INTCOL_GBH = '00004265'X ! Interlock Collision on global buffer header PARAMETER RMI$_INTRNDWN_GBHSH = '00004266'X ! Interlock still held at rundown on GBHSH PARAMETER RMI$_INTRNDWN_GBH = '00004267'X ! Interlock still held at rundown on GBH PARAMETER RMI$_RESERVEDRMS5 = '00004268'X ! Reserved RMS items PARAMETER RMI$_RESERVEDRMS6 = '00004269'X ! Reserved RMS items PARAMETER RMI$_RESERVEDRMS7 = '0000426A'X ! Reserved RMS items PARAMETER RMI$_RESERVEDRMS8 = '0000426B'X ! Reserved RMS items PARAMETER RMI$_RESERVEDRMS9 = '0000426C'X ! Reserved RMS items PARAMETER RMI$_RESERVEDRMS10 = '0000426D'X ! Reserved RMS items PARAMETER RMI$_RESERVEDRMS11 = '0000426E'X ! Reserved RMS items PARAMETER RMI$_RESERVEDRMS12 = '0000426F'X ! Reserved RMS items PARAMETER RMI$_RESERVEDRMS13 = '00004270'X ! Reserved RMS items PARAMETER RMI$_RESERVEDRMS14 = '00004271'X ! Reserved RMS items PARAMETER RMI$_RESERVEDRMS15 = '00004272'X ! Reserved RMS items PARAMETER RMI$_RESERVEDRMS16 = '00004273'X ! Reserved RMS items PARAMETER RMI$_RESERVEDRMS17 = '00004274'X ! Reserved RMS items PARAMETER RMI$_RESERVEDRMS18 = '00004275'X ! Reserved RMS items PARAMETER RMI$_RESERVEDRMS19 = '00004276'X ! Reserved RMS items PARAMETER RMI$_RESERVEDRMS20 = '00004277'X ! Reserved RMS items PARAMETER RMI$_RESERVEDRMS21 = '00004278'X ! Reserved RMS items PARAMETER RMI$_RESERVEDRMS22 = '00004279'X ! Reserved RMS items PARAMETER RMI$_RESERVEDRMS23 = '0000427A'X ! Reserved RMS items PARAMETER RMI$_RESERVEDRMS24 = '0000427B'X ! Reserved RMS items PARAMETER RMI$_RESERVEDRMS25 = '0000427C'X ! Reserved RMS items PARAMETER RMI$_RESERVEDRMS26 = '0000427D'X ! Reserved RMS items PARAMETER RMI$_RESERVEDRMS27 = '0000427E'X ! Reserved RMS items PARAMETER RMI$_RESERVEDRMS28 = '0000427F'X ! Reserved RMS items PARAMETER RMI$_RESERVEDRMS29 = '00004280'X ! Reserved RMS items PARAMETER RMI$_RESERVEDRMS30 = '00004281'X ! Reserved RMS items PARAMETER RMI$_RESERVEDRMS31 = '00004282'X ! Reserved RMS items PARAMETER RMI$_RESERVEDRMS32 = '00004283'X ! Reserved RMS items PARAMETER RMI$_RESERVEDRMS33 = '00004284'X ! Reserved RMS items PARAMETER RMI$_RESERVEDRMS34 = '00004285'X ! Reserved RMS items PARAMETER RMI$_RESERVEDRMS35 = '00004286'X ! Reserved RMS items PARAMETER RMI$_RESERVEDRMS36 = '00004287'X ! Reserved RMS items PARAMETER RMI$_RESERVEDRMS37 = '00004288'X ! Reserved RMS items PARAMETER RMI$_RESERVEDRMS38 = '00004289'X ! Reserved RMS items PARAMETER RMI$_RESERVEDRMS39 = '0000428A'X ! Reserved RMS items PARAMETER RMI$_RESERVEDRMS40 = '0000428B'X ! Reserved RMS items PARAMETER RMI$_RESERVEDRMS41 = '0000428C'X ! Reserved RMS items PARAMETER RMI$_RESERVEDRMS42 = '0000428D'X ! Reserved RMS items PARAMETER RMI$_RESERVEDRMS43 = '0000428E'X ! Reserved RMS items PARAMETER RMI$_RESERVEDRMS44 = '0000428F'X ! Reserved RMS items PARAMETER RMI$_RESERVEDRMS45 = '00004290'X ! Reserved RMS items PARAMETER RMI$_RESERVEDRMS46 = '00004291'X ! Reserved RMS items PARAMETER RMI$_RESERVEDRMS47 = '00004292'X ! Reserved RMS items PARAMETER RMI$_RESERVEDRMS48 = '00004293'X ! Reserved RMS items PARAMETER RMI$_RESERVEDRMS49 = '00004294'X ! Reserved RMS items PARAMETER RMI$_RESERVEDRMS50 = '00004295'X ! Reserved RMS items PARAMETER RMI$_RESERVEDRMS51 = '00004296'X ! Reserved RMS items PARAMETER RMI$_RESERVEDRMS52 = '00004297'X ! Reserved RMS items PARAMETER RMI$_RESERVEDRMS53 = '00004298'X ! Reserved RMS items PARAMETER RMI$_RESERVEDRMS54 = '00004299'X ! Reserved RMS items PARAMETER RMI$_RESERVEDRMS55 = '0000429A'X ! Reserved RMS items PARAMETER RMI$_RESERVEDRMS56 = '0000429B'X ! Reserved RMS items PARAMETER RMI$_RESERVEDRMS57 = '0000429C'X ! Reserved RMS items PARAMETER RMI$_RESERVEDRMS58 = '0000429D'X ! Reserved RMS items PARAMETER RMI$_RESERVEDRMS59 = '0000429E'X ! Reserved RMS items PARAMETER RMI$_RESERVEDRMS60 = '0000429F'X ! Reserved RMS items PARAMETER RMI$_RESERVEDRMS61 = '000042A0'X ! Reserved RMS items PARAMETER RMI$_RESERVEDRMS62 = '000042A1'X ! Reserved RMS items PARAMETER RMI$_RESERVEDRMS63 = '000042A2'X ! Reserved RMS items PARAMETER RMI$_RESERVEDRMS64 = '000042A3'X ! Reserved RMS items PARAMETER RMI$_RESERVEDRMS65 = '000042A4'X ! Reserved RMS items PARAMETER RMI$_RESERVEDRMS66 = '000042A5'X ! Reserved RMS items PARAMETER RMI$_RESERVEDRMS67 = '000042A6'X ! Reserved RMS items PARAMETER RMI$_RESERVEDRMS68 = '000042A7'X ! Reserved RMS items PARAMETER RMI$_RESERVEDRMS69 = '000042A8'X ! Reserved RMS items PARAMETER RMI$_RESERVEDRMS70 = '000042A9'X ! Reserved RMS items PARAMETER RMI$_RESERVEDRMS71 = '000042AA'X ! Reserved RMS items PARAMETER RMI$_RESERVEDRMS72 = '000042AB'X ! Reserved RMS items PARAMETER RMI$_RESERVEDRMS73 = '000042AC'X ! Reserved RMS items PARAMETER RMI$_RESERVEDRMS74 = '000042AD'X ! Reserved RMS items PARAMETER RMI$_RESERVEDRMS75 = '000042AE'X ! Reserved RMS items PARAMETER RMI$_RESERVEDRMS76 = '000042AF'X ! Reserved RMS items PARAMETER RMI$_RESERVEDRMS77 = '000042B0'X ! Reserved RMS items PARAMETER RMI$_RESERVEDRMS78 = '000042B1'X ! Reserved RMS items PARAMETER RMI$_RESERVEDRMS79 = '000042B2'X ! Reserved RMS items PARAMETER RMI$_RESERVEDRMS80 = '000042B3'X ! Reserved RMS items PARAMETER RMI$_RESERVEDRMS81 = '000042B4'X ! Reserved RMS items PARAMETER RMI$_RESERVEDRMS82 = '000042B5'X ! Reserved RMS items PARAMETER RMI$_RESERVEDRMS83 = '000042B6'X ! Reserved RMS items PARAMETER RMI$_RESERVEDRMS84 = '000042B7'X ! Reserved RMS items PARAMETER RMI$_RESERVEDRMS85 = '000042B8'X ! Reserved RMS items PARAMETER RMI$_RESERVEDRMS86 = '000042B9'X ! Reserved RMS items PARAMETER RMI$_RESERVEDRMS87 = '000042BA'X ! Reserved RMS items PARAMETER RMI$_RESERVEDRMS88 = '000042BB'X ! Reserved RMS items PARAMETER RMI$_RESERVEDRMS89 = '000042BC'X ! Reserved RMS items PARAMETER RMI$_RESERVEDRMS90 = '000042BD'X ! Reserved RMS items PARAMETER RMI$_RESERVEDRMS91 = '000042BE'X ! Reserved RMS items PARAMETER RMI$_RESERVEDRMS92 = '000042BF'X ! Reserved RMS items PARAMETER RMI$_RESERVEDRMS93 = '000042C0'X ! Reserved RMS items PARAMETER RMI$_RESERVEDRMS94 = '000042C1'X ! Reserved RMS items PARAMETER RMI$_RESERVEDRMS95 = '000042C2'X ! Reserved RMS items PARAMETER RMI$_RESERVEDRMS96 = '000042C3'X ! Reserved RMS items PARAMETER RMI$_RESERVEDRMS97 = '000042C4'X ! Reserved RMS items PARAMETER RMI$_RESERVEDRMS98 = '000042C5'X ! Reserved RMS items PARAMETER RMI$_RESERVEDRMS99 = '000042C6'X ! Reserved RMS items PARAMETER RMI$_RESERVEDRMS100 = '000042C7'X ! Reserved RMS items PARAMETER RMI$_LASTRMS = '000042C8'X ! Last item in the monitor specific table ! EX2TABLE : Extended EXE table ! Define item identifier numbers. Each data item has an associated ! value which is used to find its entry in the EXETBL. The item table ! is defined by the macros RMI_GENERATE_TABLE which makes multiple calls ! to the macro RMI_ITEM_CODE defined in the SYSGETRMI module. ! PARAMETER RMI$_CPUID = '000052C8'X ! Primary cpu id PARAMETER RMI$_CPUCOMPAT = '000052C9'X ! time in compat. mode PARAMETER RMI$_CPUINTSTK = '000052CA'X ! time on interrupt stack PARAMETER RMI$_CPUMPSYNCH = '000052CB'X ! time spent in synch mode PARAMETER RMI$_CPUKERNEL = '000052CC'X ! time in kernel mode PARAMETER RMI$_CPUEXEC = '000052CD'X ! time in exec mode PARAMETER RMI$_CPUSUPER = '000052CE'X ! time in supervisor mode PARAMETER RMI$_CPUUSER = '000052CF'X ! time in user mode PARAMETER RMI$_CPUIDLE = '000052D0'X ! idle time PARAMETER RMI$_PROCCNTMAX = '000052D1'X ! Maximum number of concurrent processes seen by the system PARAMETER RMI$_PROCBATCNT = '000052D2'X ! Total number of batch processes in the system PARAMETER RMI$_PROCINTCNT = '000052D3'X ! Total number of interactive processes in the system PARAMETER RMI$_PROCNETCNT = '000052D4'X ! Total number of network processes in the system PARAMETER RMI$_PROCSWITCHCNT = '000052D5'X ! Total count of switches from the then-currently exec ! Total count of switches from the then-currently executing p PARAMETER RMI$_PROCBALSETCNT = '000052D6'X ! Total number of processe in the balance set. PARAMETER RMI$_PROCLOADCNT = '000052D7'X ! Total count of process context load operations. PARAMETER RMI$_BADFLTS = '000052D8'X ! Number of bad_list faults PARAMETER RMI$_EXEFAULTS = '000052D9'X ! Number of execute page faults. PARAMETER RMI$_HDRINSWAPS = '000052DA'X ! Count of system wide process header inswap operations. PARAMETER RMI$_HDROUTSWAPS = '000052DB'X ! Count of system wide process header outswap operations. PARAMETER RMI$_IOPAGCNT = '000052DC'X ! Count of pages in transit to disk from the modified page ! Count of pages in transit to disk from the modified page li PARAMETER RMI$_ISWPCNTPG = '000052DD'X ! Accumulated system wide count of pages in-swapped. PARAMETER RMI$_OSWPCNT = '000052DE'X ! Accumulated system wide count of process owtswap operations. PARAMETER RMI$_OSWPCNTPG = '000052DF'X ! Accumulated system-wide count of pages out-swapped PARAMETER RMI$_RDFAULTS = '000052E0'X ! Count of fault-on-read page faults. PARAMETER RMI$_TRANSFLTS = '000052E1'X ! Accumulated system-wide count of transition faults. PARAMETER RMI$_WRTFAULTS = '000052E2'X ! Count of fault-on-write page faults. PARAMETER RMI$_USERPAGES = '000052E3'X ! Number of pages available for use by applications. PARAMETER RMI$_VMSPAGES = '000052E4'X ! Number of pages actually allocated to OpenVMS. PARAMETER RMI$_LOGNAMCRE = '000052E5'X ! Count of logical name creations. PARAMETER RMI$_LOGNAMDEL = '000052E6'X ! Count of logical name deletions. PARAMETER RMI$_LOGNAMFAIL = '000052E7'X ! Count of logical name translations that failed. PARAMETER RMI$_LOGNAMTBLCRE = '000052E8'X ! Count of logical name tables created. PARAMETER RMI$_TTREADCNT = '000052E9'X ! Accumulated system wide count of characters read from te ! Accumulated system wide count of characters read from termi PARAMETER RMI$_TTREADS = '000052EA'X ! Accumulated system wide count of reads from terminals. PARAMETER RMI$_TTWRITECNT = '000052EB'X ! Accumulated system wide count of characters written to ! Accumulated system wide count of characters written to term PARAMETER RMI$_TTWRITES = '000052EC'X ! Accumulated system wide count of writes to terminals. PARAMETER RMI$_BUFOBJPAG = '000052ED'X ! Count of buffer object physical pages currently allocated. PARAMETER RMI$_BUFOBJPAGPEAK = '000052EE'X ! Maximum number of buffer object physical pages curre ! Maximum number of buffer object physical pages currently al PARAMETER RMI$_BUFOBJPAGS01 = '000052EF'X ! Number of buffer object pages currently allocated in ! Number of buffer object pages currently allocated in S0/S1 PARAMETER RMI$_BUFOBJPAGS2 = '000052F0'X ! Max number of buffer object pages currently allocated ! Max number of buffer object pages currently allocated in S2 PARAMETER RMI$_BUFOBJPAGMAXS01 = '000052F1'X ! Max number of buffer object pages in S0/S1 space. PARAMETER RMI$_BUFOBJPAGMAXS2 = '000052F2'X ! Maximum number of buffer object physical pages in S PARAMETER RMI$_BUFOBJPAGPEAKS01 = '000052F3'X ! Max number of buffer object pages currently alloc ! Max number of buffer object pages currently allocated in S0 PARAMETER RMI$_BUFOBJPAGPEAKS2 = '000052F4'X ! Maximum number of buffer object physical pages cur ! Maximum number of buffer object physical pages currently al PARAMETER RMI$_BUFOBJPGLTMAXS01 = '000052F5'X ! Number of available buffer object pagelets in S0/ PARAMETER RMI$_BUFOBJPGLTMAXS2 = '000052F6'X ! Number of available buffer object pagelets in S2 s PARAMETER RMI$_DLCK_INCMPLT = '000052F7'X ! System-wide count of incomplete deadlock searches. PARAMETER RMI$_DLCKMSGS_IN = '000052F8'X ! System-wide count of incoming deadlock detection messa PARAMETER RMI$_DLCKMSGS_OUT = '000052F9'X ! System-wide count of of outgoing deadlock detection m ! System-wide count of of outgoing deadlock detection message PARAMETER RMI$_TQETOTAL = '000052FA'X ! Count of timer requests. PARAMETER RMI$_TQESYSUB = '000052FB'X ! Count of timer requests made by OpenVMS operating system. PARAMETER RMI$_TQEUSRTIMR = '000052FC'X ! Count of timer requests made by application programs th ! Count of timer requests made by application programs throug PARAMETER RMI$_TQEUSRWAKE = '000052FD'X ! Count of timer requests made by application programs th ! Count of timer requests made by application programs throug PARAMETER RMI$_CWPSBYTESIN = '000052FE'X ! Count of Cluster-wide process services "CWPS" message ! Count of Cluster-wide process services "CWPS" message bytes PARAMETER RMI$_CWPSBYTESOUT = '000052FF'X ! Count of CWPS message bytes sent by the system. PARAMETER RMI$_CWPSJPISIN = '00005300'X ! Count of CWPS $GETJPI requests received by the system. PARAMETER RMI$_CWPSJPISOUT = '00005301'X ! Count of CWPS $GETJPI requests sent by the system. PARAMETER RMI$_CWPSMSGSIN = '00005302'X ! Count of CWPS messages received by the system. PARAMETER RMI$_CWPSMSGSOUT = '00005303'X ! Count of CWPS messages sent by the system. PARAMETER RMI$_CWPSPCNTRLIN = '00005304'X ! Count of CWPS PCNTRL requests received by the system. PARAMETER RMI$_CWPSPCNTRLOUT = '00005305'X ! Count of CWPS PCNTRL requests sent by the system. PARAMETER RMI$_CWPSRSRCIN = '00005306'X ! Count of CWPS resource-fail messages received by the sy ! Count of CWPS resource-fail messages received by the system PARAMETER RMI$_CWPSRSRCOUT = '00005307'X ! Count of CWPS resource-fail messages sent by the system. PARAMETER RMI$_CHME = '00005308'X ! Count of $CMEXEC service calls. PARAMETER RMI$_CHMK = '00005309'X ! Count of $CMKRNL service calls. PARAMETER RMI$_MCHKERRS = '0000530A'X ! Count of machine checks since the system was booted. PARAMETER RMI$_MEMERRS = '0000530B'X ! Count of memory errors since the system was booted. PARAMETER RMI$_RESMASK = '0000530C'X ! A bit mask summarizing the system resources for which proc ! A bit mask summarizing the system resources for which proce PARAMETER RMI$_CACHE_STATE = '0000530D'X ! Cache stats bits PARAMETER RMI$_CACHE_MEMORY = '0000530E'X ! Pages of memory currently held by the cache PARAMETER RMI$_CACHE_FREE = '0000530F'X ! Pages of memory held by the cache but not currently in PARAMETER RMI$_CACHE_READ_HITS = '00005310'X ! Read hits PARAMETER RMI$_CACHE_VIRT_READS = '00005311'X ! Virtual reads to cacheable files PARAMETER RMI$_CACHE_VIRT_WRITES = '00005312'X ! Virtual writes to cacheable files PARAMETER RMI$_CACHE_R_ARND_MOD = '00005313'X ! Read arounds due to modifier bits PARAMETER RMI$_CACHE_R_ARND_SIZ = '00005314'X ! Read arounds due to size too large PARAMETER RMI$_CACHE_W_ARND_MOD = '00005315'X ! Write arounds due to modifier bits PARAMETER RMI$_CACHE_W_ARND_SIZ = '00005316'X ! Write arounds due to size too large PARAMETER RMI$_CACHE_LIMBO_LEN = '00005317'X ! Length of limbo queue PARAMETER RMI$_CACHE_MIN_SIZE = '00005318'X ! Minimum cache size in Pages PARAMETER RMI$_CACHE_MAX_SIZE = '00005319'X ! Current maximum cache size in Pages PARAMETER RMI$_CACHE_MAX_LIMIT = '0000531A'X ! Maximum ever cache size in Pages (limited by boot- ! Maximum ever cache size in Pages (limited by boot-time VA a PARAMETER RMI$_CACHE_MAX_IO_SIZE = '0000531B'X ! Value of VCC_MAX_IO_SIZE PARAMETER RMI$_CACHE_MAX_LOCKS = '0000531C'X ! Value of VCC_MAX_LOCKS PARAMETER RMI$_CACHE_READAHEAD = '0000531D'X ! Value of VCC_READAHEAD PARAMETER RMI$_CACHE_WRITEBEHIND = '0000531E'X ! Value of VCC_WRITEBEHIND PARAMETER RMI$_CACHE_WRITEDELAY = '0000531F'X ! Value of VCC_WRITE_DELAY PARAMETER RMI$_CACHE_VOLS_FXFC_MODE = '00005320'X ! Count of volumes in Full XFC mode PARAMETER RMI$_CACHE_VOLS_RXFC_MODE = '00005321'X ! Count of volumes in VIOC compatability mode PARAMETER RMI$_CACHE_VOLS_NC_MODE = '00005322'X ! Count of volumes in No Caching mode PARAMETER RMI$_CACHE_VOLS_PNC_MODE = '00005323'X ! Count of volumes in Permanent No Caching mode PARAMETER RMI$_CACHE_OPEN_FILES = '00005324'X ! Number of open files PARAMETER RMI$_CACHE_UNSYNCHED_IOS = '00005325'X ! Number of physical/logical unsynched IOs PARAMETER RMI$_CACHE_DELAYED_WRITES = '00005326'X ! Number of write-behind writes PARAMETER RMI$_CACHE_LOST_WRITES = '00005327'X ! Writes lost due to disk errors PARAMETER RMI$_CACHE_FULL_BARRIERS = '00005328'X ! Number of full barriers in dep graph PARAMETER RMI$_CACHE_PARTIAL_BARRIERS = '00005329'X ! Number of partial barriers in dep graph PARAMETER RMI$_CACHE_READS_AROUND = '0000532A'X ! Total number of reads around the cache PARAMETER RMI$_CACHE_WRITES_AROUND = '0000532B'X ! Total number of writes around the cache PARAMETER RMI$_CACHE_CURRENT_LOCKS = '0000532C'X ! Number of locks currently held by cache PARAMETER RMI$_CACHE_BARRIER_COUNT = '0000532D'X ! Number of barrier calls made since boot-time PARAMETER RMI$_CACHE_SUPER_WRITES = '0000532E'X ! Number of writes that supersede dirty data PARAMETER RMI$_CACHE_NON_PAGED_POOL = '0000532F'X ! Amount of non-paged pool cuurrently held by t PARAMETER RMI$_CACHE_EVERYTHING = '00005330'X ! Dummy item to collect everything about cache PARAMETER RMI$_GBP_CURMAP = '00005331'X ! Count of global pages currently mapped. PARAMETER RMI$_GBP_CURMAP_GRP = '00005332'X ! Count of group global pages currently mapped. PARAMETER RMI$_GBP_CURMAP_GRPWRT = '00005333'X ! Count of writable group global pages currently m PARAMETER RMI$_GBP_CURMAP_SYS = '00005334'X ! Count of system global pages currently mapped. PARAMETER RMI$_GBP_CURMAP_SYSWRT = '00005335'X ! Count of writable system global pages currently PARAMETER RMI$_GBP_MAXMAP = '00005336'X ! Maximum count of global pages simultaneouly mapped. PARAMETER RMI$_GBS_CURMAP = '00005337'X ! Count of global sections currently mapped. PARAMETER RMI$_GBS_CURMAP_GRP = '00005338'X ! Count of group global sections currently mapped. PARAMETER RMI$_GBS_CURMAP_GRPWRT = '00005339'X ! Count of writable group global sections currentl PARAMETER RMI$_GBS_CURMAP_SYS = '0000533A'X ! Count of system global sections currently mapped. PARAMETER RMI$_GBS_CURMAP_SYSWRT = '0000533B'X ! Count of writable system global sections current PARAMETER RMI$_GBS_MAXMAP = '0000533C'X ! Maximum count of global sections simutaneously mapped. PARAMETER RMI$_GBS_NOREF = '0000533D'X ! Count of global sections not mapped to a process. PARAMETER RMI$_NP_POOL_ALLOC = '0000533E'X ! Accumulated count of non-paged pool allocation reque PARAMETER RMI$_NP_POOL_ALLOCF = '0000533F'X ! Count of unsuccessful non-paged pool allocation req PARAMETER RMI$_NP_POOL_EXP = '00005340'X ! Count of successful expansions on non-paged pool. PARAMETER RMI$_NP_POOL_EXPF = '00005341'X ! Count of unsuccessful attempts to expand non-paged po PARAMETER RMI$_PG_POOL_ALLOC = '00005342'X ! Count of paged pool allocation requests. PARAMETER RMI$_PG_POOL_ALLOCF = '00005343'X ! Count of unsuccessful paged pool allocation requests. PARAMETER RMI$_PG_POOL_EXPF = '00005344'X ! Count of unsuccessful attempts to expand paged pool. PARAMETER RMI$_SMP_CURMAP = '00005345'X ! Count of global pages currently mapped for galaxy share ! Count of global pages currently mapped for galaxy shared me PARAMETER RMI$_SMP_CURMAP_GRP = '00005346'X ! Count of group global pages currently mapped for ga ! Count of group global pages currently mapped for galaxy sha PARAMETER RMI$_SMP_CURMAP_GRPWRT = '00005347'X ! Count of writable group global pages currently m ! Count of writable group global pages currently mapped for g PARAMETER RMI$_SMP_CURMAP_SYS = '00005348'X ! Count of system global pages currently mapped for g ! Count of system global pages currently mapped for galaxy sh PARAMETER RMI$_SMP_CURMAP_SYSWRT = '00005349'X ! Count of writable system global pages currently ! Count of writable system global pages currently mapped for PARAMETER RMI$_SMS_CURMAP = '0000534A'X ! Count of global sections currently mapped for galaxy sh ! Count of global sections currently mapped for galaxy shared PARAMETER RMI$_SMS_CURMAP_GRP = '0000534B'X ! Count of group global sections currently mapped for ! Count of group global sections currently mapped for galaxy PARAMETER RMI$_SMS_CURMAP_GRPWRT = '0000534C'X ! Count of writable group global sections currentl ! Count of writable group global sections currently mapped fo PARAMETER RMI$_SMS_CURMAP_SYS = '0000534D'X ! Count of system global sections currently mapped fo ! Count of system global sections currently mapped for galaxy PARAMETER RMI$_SMS_CURMAP_SYSWRT = '0000534E'X ! Count of writable system global sections current ! Count of writable system global sections currently mapped f PARAMETER RMI$_SMS_NOREF = '0000534F'X ! Current count of global sections for galaxy shared memor ! Current count of global sections for galaxy shared memory w PARAMETER RMI$_RESERVEDEXT1 = '00005350'X ! Reserved EXE items PARAMETER RMI$_RESERVEDEXT2 = '00005351'X ! Reserved EXE items PARAMETER RMI$_RESERVEDEXT3 = '00005352'X ! Reserved EXE items PARAMETER RMI$_RESERVEDEXT4 = '00005353'X ! Reserved EXE items PARAMETER RMI$_RESERVEDEXT5 = '00005354'X ! Reserved EXE items PARAMETER RMI$_RESERVEDEXT6 = '00005355'X ! Reserved EXE items PARAMETER RMI$_RESERVEDEXT7 = '00005356'X ! Reserved EXE items PARAMETER RMI$_RESERVEDEXT8 = '00005357'X ! Reserved EXE items PARAMETER RMI$_RESERVEDEXT9 = '00005358'X ! Reserved EXE items PARAMETER RMI$_RESERVEDEXT10 = '00005359'X ! Reserved EXE items PARAMETER RMI$_RESERVEDEXT11 = '0000535A'X ! Reserved EXE items PARAMETER RMI$_RESERVEDEXT12 = '0000535B'X ! Reserved EXE items PARAMETER RMI$_RESERVEDEXT13 = '0000535C'X ! Reserved EXE items PARAMETER RMI$_RESERVEDEXT14 = '0000535D'X ! Reserved EXE items PARAMETER RMI$_RESERVEDEXT15 = '0000535E'X ! Reserved EXE items PARAMETER RMI$_RESERVEDEXT16 = '0000535F'X ! Reserved EXE items PARAMETER RMI$_RESERVEDEXT17 = '00005360'X ! Reserved EXE items PARAMETER RMI$_RESERVEDEXT18 = '00005361'X ! Reserved EXE items PARAMETER RMI$_RESERVEDEXT19 = '00005362'X ! Reserved EXE items PARAMETER RMI$_RESERVEDEXT20 = '00005363'X ! Reserved EXE items PARAMETER RMI$_RESERVEDEXT21 = '00005364'X ! Reserved EXE items PARAMETER RMI$_RESERVEDEXT22 = '00005365'X ! Reserved EXE items PARAMETER RMI$_RESERVEDEXT23 = '00005366'X ! Reserved EXE items PARAMETER RMI$_RESERVEDEXT24 = '00005367'X ! Reserved EXE items PARAMETER RMI$_RESERVEDEXT25 = '00005368'X ! Reserved EXE items PARAMETER RMI$_RESERVEDEXT26 = '00005369'X ! Reserved EXE items PARAMETER RMI$_RESERVEDEXT27 = '0000536A'X ! Reserved EXE items PARAMETER RMI$_RESERVEDEXT28 = '0000536B'X ! Reserved EXE items PARAMETER RMI$_RESERVEDEXT29 = '0000536C'X ! Reserved EXE items PARAMETER RMI$_RESERVEDEXT30 = '0000536D'X ! Reserved EXE items PARAMETER RMI$_RESERVEDEXT31 = '0000536E'X ! Reserved EXE items PARAMETER RMI$_RESERVEDEXT32 = '0000536F'X ! Reserved EXE items PARAMETER RMI$_RESERVEDEXT33 = '00005370'X ! Reserved EXE items PARAMETER RMI$_RESERVEDEXT34 = '00005371'X ! Reserved EXE items PARAMETER RMI$_RESERVEDEXT35 = '00005372'X ! Reserved EXE items PARAMETER RMI$_RESERVEDEXT36 = '00005373'X ! Reserved EXE items PARAMETER RMI$_RESERVEDEXT37 = '00005374'X ! Reserved EXE items PARAMETER RMI$_RESERVEDEXT38 = '00005375'X ! Reserved EXE items PARAMETER RMI$_RESERVEDEXT39 = '00005376'X ! Reserved EXE items PARAMETER RMI$_RESERVEDEXT40 = '00005377'X ! Reserved EXE items PARAMETER RMI$_RESERVEDEXT41 = '00005378'X ! Reserved EXE items PARAMETER RMI$_RESERVEDEXT42 = '00005379'X ! Reserved EXE items PARAMETER RMI$_RESERVEDEXT43 = '0000537A'X ! Reserved EXE items PARAMETER RMI$_RESERVEDEXT44 = '0000537B'X ! Reserved EXE items PARAMETER RMI$_RESERVEDEXT45 = '0000537C'X ! Reserved EXE items PARAMETER RMI$_RESERVEDEXT46 = '0000537D'X ! Reserved EXE items PARAMETER RMI$_RESERVEDEXT47 = '0000537E'X ! Reserved EXE items PARAMETER RMI$_RESERVEDEXT48 = '0000537F'X ! Reserved EXE items PARAMETER RMI$_RESERVEDEXT49 = '00005380'X ! Reserved EXE items PARAMETER RMI$_RESERVEDEXT50 = '00005381'X ! Reserved EXE items PARAMETER RMI$_RESERVEDEXT51 = '00005382'X ! Reserved EXE items PARAMETER RMI$_RESERVEDEXT52 = '00005383'X ! Reserved EXE items PARAMETER RMI$_RESERVEDEXT53 = '00005384'X ! Reserved EXE items PARAMETER RMI$_RESERVEDEXT54 = '00005385'X ! Reserved EXE items PARAMETER RMI$_RESERVEDEXT55 = '00005386'X ! Reserved EXE items PARAMETER RMI$_RESERVEDEXT56 = '00005387'X ! Reserved EXE items PARAMETER RMI$_RESERVEDEXT57 = '00005388'X ! Reserved EXE items PARAMETER RMI$_RESERVEDEXT58 = '00005389'X ! Reserved EXE items PARAMETER RMI$_RESERVEDEXT59 = '0000538A'X ! Reserved EXE items PARAMETER RMI$_RESERVEDEXT60 = '0000538B'X ! Reserved EXE items PARAMETER RMI$_RESERVEDEXT61 = '0000538C'X ! Reserved EXE items PARAMETER RMI$_RESERVEDEXT62 = '0000538D'X ! Reserved EXE items PARAMETER RMI$_RESERVEDEXT63 = '0000538E'X ! Reserved EXE items PARAMETER RMI$_RESERVEDEXT64 = '0000538F'X ! Reserved EXE items PARAMETER RMI$_RESERVEDEXT65 = '00005390'X ! Reserved EXE items PARAMETER RMI$_RESERVEDEXT66 = '00005391'X ! Reserved EXE items PARAMETER RMI$_RESERVEDEXT67 = '00005392'X ! Reserved EXE items PARAMETER RMI$_RESERVEDEXT68 = '00005393'X ! Reserved EXE items PARAMETER RMI$_RESERVEDEXT69 = '00005394'X ! Reserved EXE items PARAMETER RMI$_RESERVEDEXT70 = '00005395'X ! Reserved EXE items PARAMETER RMI$_RESERVEDEXT71 = '00005396'X ! Reserved EXE items PARAMETER RMI$_RESERVEDEXT72 = '00005397'X ! Reserved EXE items PARAMETER RMI$_RESERVEDEXT73 = '00005398'X ! Reserved EXE items PARAMETER RMI$_RESERVEDEXT74 = '00005399'X ! Reserved EXE items PARAMETER RMI$_RESERVEDEXT75 = '0000539A'X ! Reserved EXE items PARAMETER RMI$_RESERVEDEXT76 = '0000539B'X ! Reserved EXE items PARAMETER RMI$_RESERVEDEXT77 = '0000539C'X ! Reserved EXE items PARAMETER RMI$_RESERVEDEXT78 = '0000539D'X ! Reserved EXE items PARAMETER RMI$_RESERVEDEXT79 = '0000539E'X ! Reserved EXE items PARAMETER RMI$_RESERVEDEXT80 = '0000539F'X ! Reserved EXE items PARAMETER RMI$_RESERVEDEXT81 = '000053A0'X ! Reserved EXE items PARAMETER RMI$_RESERVEDEXT82 = '000053A1'X ! Reserved EXE items PARAMETER RMI$_RESERVEDEXT83 = '000053A2'X ! Reserved EXE items PARAMETER RMI$_RESERVEDEXT84 = '000053A3'X ! Reserved EXE items PARAMETER RMI$_RESERVEDEXT85 = '000053A4'X ! Reserved EXE items PARAMETER RMI$_RESERVEDEXT86 = '000053A5'X ! Reserved EXE items PARAMETER RMI$_RESERVEDEXT87 = '000053A6'X ! Reserved EXE items PARAMETER RMI$_RESERVEDEXT88 = '000053A7'X ! Reserved EXE items PARAMETER RMI$_RESERVEDEXT89 = '000053A8'X ! Reserved EXE items PARAMETER RMI$_RESERVEDEXT90 = '000053A9'X ! Reserved EXE items PARAMETER RMI$_RESERVEDEXT91 = '000053AA'X ! Reserved EXE items PARAMETER RMI$_RESERVEDEXT92 = '000053AB'X ! Reserved EXE items PARAMETER RMI$_RESERVEDEXT93 = '000053AC'X ! Reserved EXE items PARAMETER RMI$_RESERVEDEXT94 = '000053AD'X ! Reserved EXE items PARAMETER RMI$_RESERVEDEXT95 = '000053AE'X ! Reserved EXE items PARAMETER RMI$_RESERVEDEXT96 = '000053AF'X ! Reserved EXE items PARAMETER RMI$_RESERVEDEXT97 = '000053B0'X ! Reserved EXE items PARAMETER RMI$_RESERVEDEXT98 = '000053B1'X ! Reserved EXE items PARAMETER RMI$_RESERVEDEXT99 = '000053B2'X ! Reserved EXE items PARAMETER RMI$_RESERVEDEXT100 = '000053B3'X ! Reserved EXE items PARAMETER RMI$_RESERVEDEXT101 = '000053B4'X ! Reserved EXE items PARAMETER RMI$_RESERVEDEXT102 = '000053B5'X ! Reserved EXE items PARAMETER RMI$_RESERVEDEXT103 = '000053B6'X ! Reserved EXE items PARAMETER RMI$_RESERVEDEXT104 = '000053B7'X ! Reserved EXE items PARAMETER RMI$_RESERVEDEXT105 = '000053B8'X ! Reserved EXE items PARAMETER RMI$_RESERVEDEXT106 = '000053B9'X ! Reserved EXE items PARAMETER RMI$_RESERVEDEXT107 = '000053BA'X ! Reserved EXE items PARAMETER RMI$_RESERVEDEXT108 = '000053BB'X ! Reserved EXE items PARAMETER RMI$_RESERVEDEXT109 = '000053BC'X ! Reserved EXE items PARAMETER RMI$_RESERVEDEXT110 = '000053BD'X ! Reserved EXE items PARAMETER RMI$_RESERVEDEXT111 = '000053BE'X ! Reserved EXE items PARAMETER RMI$_RESERVEDEXT112 = '000053BF'X ! Reserved EXE items PARAMETER RMI$_RESERVEDEXT113 = '000053C0'X ! Reserved EXE items PARAMETER RMI$_RESERVEDEXT114 = '000053C1'X ! Reserved EXE items PARAMETER RMI$_RESERVEDEXT115 = '000053C2'X ! Reserved EXE items PARAMETER RMI$_RESERVEDEXT116 = '000053C3'X ! Reserved EXE items PARAMETER RMI$_RESERVEDEXT117 = '000053C4'X ! Reserved EXE items PARAMETER RMI$_RESERVEDEXT118 = '000053C5'X ! Reserved EXE items PARAMETER RMI$_RESERVEDEXT119 = '000053C6'X ! Reserved EXE items PARAMETER RMI$_RESERVEDEXT120 = '000053C7'X ! Reserved EXE items PARAMETER RMI$_RESERVEDEXT121 = '000053C8'X ! Reserved EXE items PARAMETER RMI$_RESERVEDEXT122 = '000053C9'X ! Reserved EXE items PARAMETER RMI$_RESERVEDEXT123 = '000053CA'X ! Reserved EXE items PARAMETER RMI$_RESERVEDEXT124 = '000053CB'X ! Reserved EXE items PARAMETER RMI$_RESERVEDEXT125 = '000053CC'X ! Reserved EXE items PARAMETER RMI$_RESERVEDEXT126 = '000053CD'X ! Reserved EXE items PARAMETER RMI$_RESERVEDEXT127 = '000053CE'X ! Reserved EXE items PARAMETER RMI$_RESERVEDEXT128 = '000053CF'X ! Reserved EXE items PARAMETER RMI$_RESERVEDEXT129 = '000053D0'X ! Reserved EXE items PARAMETER RMI$_RESERVEDEXT130 = '000053D1'X ! Reserved EXE items PARAMETER RMI$_RESERVEDEXT131 = '000053D2'X ! Reserved EXE items PARAMETER RMI$_RESERVEDEXT132 = '000053D3'X ! Reserved EXE items PARAMETER RMI$_RESERVEDEXT133 = '000053D4'X ! Reserved EXE items PARAMETER RMI$_RESERVEDEXT134 = '000053D5'X ! Reserved EXE items PARAMETER RMI$_RESERVEDEXT135 = '000053D6'X ! Reserved EXE items PARAMETER RMI$_RESERVEDEXT136 = '000053D7'X ! Reserved EXE items PARAMETER RMI$_RESERVEDEXT137 = '000053D8'X ! Reserved EXE items PARAMETER RMI$_RESERVEDEXT138 = '000053D9'X ! Reserved EXE items PARAMETER RMI$_RESERVEDEXT139 = '000053DA'X ! Reserved EXE items PARAMETER RMI$_RESERVEDEXT140 = '000053DB'X ! Reserved EXE items PARAMETER RMI$_RESERVEDEXT141 = '000053DC'X ! Reserved EXE items PARAMETER RMI$_RESERVEDEXT142 = '000053DD'X ! Reserved EXE items PARAMETER RMI$_RESERVEDEXT143 = '000053DE'X ! Reserved EXE items PARAMETER RMI$_RESERVEDEXT144 = '000053DF'X ! Reserved EXE items PARAMETER RMI$_RESERVEDEXT145 = '000053E0'X ! Reserved EXE items PARAMETER RMI$_RESERVEDEXT146 = '000053E1'X ! Reserved EXE items PARAMETER RMI$_RESERVEDEXT147 = '000053E2'X ! Reserved EXE items PARAMETER RMI$_RESERVEDEXT148 = '000053E3'X ! Reserved EXE items PARAMETER RMI$_RESERVEDEXT149 = '000053E4'X ! Reserved EXE items PARAMETER RMI$_RESERVEDEXT150 = '000053E5'X ! Reserved EXE items PARAMETER RMI$_RESERVEDEXT151 = '000053E6'X ! Reserved EXE items PARAMETER RMI$_RESERVEDEXT152 = '000053E7'X ! Reserved EXE items PARAMETER RMI$_RESERVEDEXT153 = '000053E8'X ! Reserved EXE items PARAMETER RMI$_RESERVEDEXT154 = '000053E9'X ! Reserved EXE items PARAMETER RMI$_RESERVEDEXT155 = '000053EA'X ! Reserved EXE items PARAMETER RMI$_RESERVEDEXT156 = '000053EB'X ! Reserved EXE items PARAMETER RMI$_RESERVEDEXT157 = '000053EC'X ! Reserved EXE items PARAMETER RMI$_RESERVEDEXT158 = '000053ED'X ! Reserved EXE items PARAMETER RMI$_RESERVEDEXT159 = '000053EE'X ! Reserved EXE items PARAMETER RMI$_RESERVEDEXT160 = '000053EF'X ! Reserved EXE items PARAMETER RMI$_RESERVEDEXT161 = '000053F0'X ! Reserved EXE items PARAMETER RMI$_RESERVEDEXT162 = '000053F1'X ! Reserved EXE items PARAMETER RMI$_RESERVEDEXT163 = '000053F2'X ! Reserved EXE items PARAMETER RMI$_RESERVEDEXT164 = '000053F3'X ! Reserved EXE items PARAMETER RMI$_RESERVEDEXT165 = '000053F4'X ! Reserved EXE items PARAMETER RMI$_RESERVEDEXT166 = '000053F5'X ! Reserved EXE items PARAMETER RMI$_RESERVEDEXT167 = '000053F6'X ! Reserved EXE items PARAMETER RMI$_RESERVEDEXT168 = '000053F7'X ! Reserved EXE items PARAMETER RMI$_RESERVEDEXT169 = '000053F8'X ! Reserved EXE items PARAMETER RMI$_RESERVEDEXT170 = '000053F9'X ! Reserved EXE items PARAMETER RMI$_RESERVEDEXT171 = '000053FA'X ! Reserved EXE items PARAMETER RMI$_RESERVEDEXT172 = '000053FB'X ! Reserved EXE items PARAMETER RMI$_RESERVEDEXT173 = '000053FC'X ! Reserved EXE items PARAMETER RMI$_RESERVEDEXT174 = '000053FD'X ! Reserved EXE items PARAMETER RMI$_RESERVEDEXT175 = '000053FE'X ! Reserved EXE items PARAMETER RMI$_RESERVEDEXT176 = '000053FF'X ! Reserved EXE items PARAMETER RMI$_RESERVEDEXT177 = '00005400'X ! Reserved EXE items PARAMETER RMI$_RESERVEDEXT178 = '00005401'X ! Reserved EXE items PARAMETER RMI$_RESERVEDEXT179 = '00005402'X ! Reserved EXE items PARAMETER RMI$_RESERVEDEXT180 = '00005403'X ! Reserved EXE items PARAMETER RMI$_RESERVEDEXT181 = '00005404'X ! Reserved EXE items PARAMETER RMI$_RESERVEDEXT182 = '00005405'X ! Reserved EXE items PARAMETER RMI$_RESERVEDEXT183 = '00005406'X ! Reserved EXE items PARAMETER RMI$_RESERVEDEXT184 = '00005407'X ! Reserved EXE items PARAMETER RMI$_RESERVEDEXT185 = '00005408'X ! Reserved EXE items PARAMETER RMI$_RESERVEDEXT186 = '00005409'X ! Reserved EXE items PARAMETER RMI$_RESERVEDEXT187 = '0000540A'X ! Reserved EXE items PARAMETER RMI$_RESERVEDEXT188 = '0000540B'X ! Reserved EXE items PARAMETER RMI$_RESERVEDEXT189 = '0000540C'X ! Reserved EXE items PARAMETER RMI$_RESERVEDEXT190 = '0000540D'X ! Reserved EXE items PARAMETER RMI$_RESERVEDEXT191 = '0000540E'X ! Reserved EXE items PARAMETER RMI$_RESERVEDEXT192 = '0000540F'X ! Reserved EXE items PARAMETER RMI$_RESERVEDEXT193 = '00005410'X ! Reserved EXE items PARAMETER RMI$_RESERVEDEXT194 = '00005411'X ! Reserved EXE items PARAMETER RMI$_RESERVEDEXT195 = '00005412'X ! Reserved EXE items PARAMETER RMI$_RESERVEDEXT196 = '00005413'X ! Reserved EXE items PARAMETER RMI$_RESERVEDEXT197 = '00005414'X ! Reserved EXE items PARAMETER RMI$_RESERVEDEXT198 = '00005415'X ! Reserved EXE items PARAMETER RMI$_RESERVEDEXT199 = '00005416'X ! Reserved EXE items PARAMETER RMI$_RESERVEDEXT200 = '00005417'X ! Reserved EXE items PARAMETER RMI$_RESERVEDEXT201 = '00005418'X ! Reserved EXE items PARAMETER RMI$_RESERVEDEXT202 = '00005419'X ! Reserved EXE items PARAMETER RMI$_RESERVEDEXT203 = '0000541A'X ! Reserved EXE items PARAMETER RMI$_RESERVEDEXT204 = '0000541B'X ! Reserved EXE items PARAMETER RMI$_RESERVEDEXT205 = '0000541C'X ! Reserved EXE items PARAMETER RMI$_RESERVEDEXT206 = '0000541D'X ! Reserved EXE items PARAMETER RMI$_RESERVEDEXT207 = '0000541E'X ! Reserved EXE items PARAMETER RMI$_RESERVEDEXT208 = '0000541F'X ! Reserved EXE items PARAMETER RMI$_RESERVEDEXT209 = '00005420'X ! Reserved EXE items PARAMETER RMI$_RESERVEDEXT210 = '00005421'X ! Reserved EXE items PARAMETER RMI$_RESERVEDEXT211 = '00005422'X ! Reserved EXE items PARAMETER RMI$_RESERVEDEXT212 = '00005423'X ! Reserved EXE items PARAMETER RMI$_RESERVEDEXT213 = '00005424'X ! Reserved EXE items PARAMETER RMI$_RESERVEDEXT214 = '00005425'X ! Reserved EXE items PARAMETER RMI$_RESERVEDEXT215 = '00005426'X ! Reserved EXE items PARAMETER RMI$_RESERVEDEXT216 = '00005427'X ! Reserved EXE items PARAMETER RMI$_RESERVEDEXT217 = '00005428'X ! Reserved EXE items PARAMETER RMI$_RESERVEDEXT218 = '00005429'X ! Reserved EXE items PARAMETER RMI$_RESERVEDEXT219 = '0000542A'X ! Reserved EXE items PARAMETER RMI$_RESERVEDEXT220 = '0000542B'X ! Reserved EXE items PARAMETER RMI$_RESERVEDEXT221 = '0000542C'X ! Reserved EXE items PARAMETER RMI$_RESERVEDEXT222 = '0000542D'X ! Reserved EXE items PARAMETER RMI$_RESERVEDEXT223 = '0000542E'X ! Reserved EXE items PARAMETER RMI$_RESERVEDEXT224 = '0000542F'X ! Reserved EXE items PARAMETER RMI$_RESERVEDEXT225 = '00005430'X ! Reserved EXE items PARAMETER RMI$_RESERVEDEXT226 = '00005431'X ! Reserved EXE items PARAMETER RMI$_RESERVEDEXT227 = '00005432'X ! Reserved EXE items PARAMETER RMI$_RESERVEDEXT228 = '00005433'X ! Reserved EXE items PARAMETER RMI$_RESERVEDEXT229 = '00005434'X ! Reserved EXE items PARAMETER RMI$_RESERVEDEXT230 = '00005435'X ! Reserved EXE items PARAMETER RMI$_RESERVEDEXT231 = '00005436'X ! Reserved EXE items PARAMETER RMI$_RESERVEDEXT232 = '00005437'X ! Reserved EXE items PARAMETER RMI$_RESERVEDEXT233 = '00005438'X ! Reserved EXE items PARAMETER RMI$_RESERVEDEXT234 = '00005439'X ! Reserved EXE items PARAMETER RMI$_RESERVEDEXT235 = '0000543A'X ! Reserved EXE items PARAMETER RMI$_RESERVEDEXT236 = '0000543B'X ! Reserved EXE items PARAMETER RMI$_RESERVEDEXT237 = '0000543C'X ! Reserved EXE items PARAMETER RMI$_RESERVEDEXT238 = '0000543D'X ! Reserved EXE items PARAMETER RMI$_RESERVEDEXT239 = '0000543E'X ! Reserved EXE items PARAMETER RMI$_RESERVEDEXT240 = '0000543F'X ! Reserved EXE items PARAMETER RMI$_RESERVEDEXT241 = '00005440'X ! Reserved EXE items PARAMETER RMI$_RESERVEDEXT242 = '00005441'X ! Reserved EXE items PARAMETER RMI$_RESERVEDEXT243 = '00005442'X ! Reserved EXE items PARAMETER RMI$_RESERVEDEXT244 = '00005443'X ! Reserved EXE items PARAMETER RMI$_RESERVEDEXT245 = '00005444'X ! Reserved EXE items PARAMETER RMI$_RESERVEDEXT246 = '00005445'X ! Reserved EXE items PARAMETER RMI$_RESERVEDEXT247 = '00005446'X ! Reserved EXE items PARAMETER RMI$_RESERVEDEXT248 = '00005447'X ! Reserved EXE items PARAMETER RMI$_RESERVEDEXT249 = '00005448'X ! Reserved EXE items PARAMETER RMI$_RESERVEDEXT250 = '00005449'X ! Reserved EXE items PARAMETER RMI$_RESERVEDEXT251 = '0000544A'X ! Reserved EXE items PARAMETER RMI$_RESERVEDEXT252 = '0000544B'X ! Reserved EXE items PARAMETER RMI$_RESERVEDEXT253 = '0000544C'X ! Reserved EXE items PARAMETER RMI$_RESERVEDEXT254 = '0000544D'X ! Reserved EXE items PARAMETER RMI$_RESERVEDEXT255 = '0000544E'X ! Reserved EXE items PARAMETER RMI$_RESERVEDEXT256 = '0000544F'X ! Reserved EXE items PARAMETER RMI$_RESERVEDEXT257 = '00005450'X ! Reserved EXE items PARAMETER RMI$_RESERVEDEXT258 = '00005451'X ! Reserved EXE items PARAMETER RMI$_RESERVEDEXT259 = '00005452'X ! Reserved EXE items PARAMETER RMI$_RESERVEDEXT260 = '00005453'X ! Reserved EXE items PARAMETER RMI$_RESERVEDEXT261 = '00005454'X ! Reserved EXE items PARAMETER RMI$_RESERVEDEXT262 = '00005455'X ! Reserved EXE items PARAMETER RMI$_RESERVEDEXT263 = '00005456'X ! Reserved EXE items PARAMETER RMI$_RESERVEDEXT264 = '00005457'X ! Reserved EXE items PARAMETER RMI$_RESERVEDEXT265 = '00005458'X ! Reserved EXE items PARAMETER RMI$_RESERVEDEXT266 = '00005459'X ! Reserved EXE items PARAMETER RMI$_RESERVEDEXT267 = '0000545A'X ! Reserved EXE items PARAMETER RMI$_RESERVEDEXT268 = '0000545B'X ! Reserved EXE items PARAMETER RMI$_RESERVEDEXT269 = '0000545C'X ! Reserved EXE items PARAMETER RMI$_RESERVEDEXT270 = '0000545D'X ! Reserved EXE items PARAMETER RMI$_RESERVEDEXT271 = '0000545E'X ! Reserved EXE items PARAMETER RMI$_RESERVEDEXT272 = '0000545F'X ! Reserved EXE items PARAMETER RMI$_RESERVEDEXT273 = '00005460'X ! Reserved EXE items PARAMETER RMI$_RESERVEDEXT274 = '00005461'X ! Reserved EXE items PARAMETER RMI$_RESERVEDEXT275 = '00005462'X ! Reserved EXE items PARAMETER RMI$_RESERVEDEXT276 = '00005463'X ! Reserved EXE items PARAMETER RMI$_RESERVEDEXT277 = '00005464'X ! Reserved EXE items PARAMETER RMI$_RESERVEDEXT278 = '00005465'X ! Reserved EXE items PARAMETER RMI$_RESERVEDEXT279 = '00005466'X ! Reserved EXE items PARAMETER RMI$_RESERVEDEXT280 = '00005467'X ! Reserved EXE items PARAMETER RMI$_RESERVEDEXT281 = '00005468'X ! Reserved EXE items PARAMETER RMI$_RESERVEDEXT282 = '00005469'X ! Reserved EXE items PARAMETER RMI$_RESERVEDEXT283 = '0000546A'X ! Reserved EXE items PARAMETER RMI$_RESERVEDEXT284 = '0000546B'X ! Reserved EXE items PARAMETER RMI$_RESERVEDEXT285 = '0000546C'X ! Reserved EXE items PARAMETER RMI$_RESERVEDEXT286 = '0000546D'X ! Reserved EXE items PARAMETER RMI$_RESERVEDEXT287 = '0000546E'X ! Reserved EXE items PARAMETER RMI$_RESERVEDEXT288 = '0000546F'X ! Reserved EXE items PARAMETER RMI$_RESERVEDEXT289 = '00005470'X ! Reserved EXE items PARAMETER RMI$_RESERVEDEXT290 = '00005471'X ! Reserved EXE items PARAMETER RMI$_RESERVEDEXT291 = '00005472'X ! Reserved EXE items PARAMETER RMI$_RESERVEDEXT292 = '00005473'X ! Reserved EXE items PARAMETER RMI$_RESERVEDEXT293 = '00005474'X ! Reserved EXE items PARAMETER RMI$_RESERVEDEXT294 = '00005475'X ! Reserved EXE items PARAMETER RMI$_RESERVEDEXT295 = '00005476'X ! Reserved EXE items PARAMETER RMI$_RESERVEDEXT296 = '00005477'X ! Reserved EXE items PARAMETER RMI$_RESERVEDEXT297 = '00005478'X ! Reserved EXE items PARAMETER RMI$_RESERVEDEXT298 = '00005479'X ! Reserved EXE items PARAMETER RMI$_RESERVEDEXT299 = '0000547A'X ! Reserved EXE items PARAMETER RMI$_RESERVEDEXT300 = '0000547B'X ! Reserved EXE items PARAMETER RMI$_LASTEX2 = '0000547C'X ! Last item in the exec writable table ! ! Add new data items specific to MONITOR (not collected by the RMI on a per ! item basis) above this point. ! PARAMETER RMI$_tablesize = '0000047C'X ! ! End of MONITOR specific data items. ! STRUCTURE /rmi$scs_offsets/ ! SCS class information INTEGER*4 RMI$q_scs_nodename(2) ! System node name INTEGER*4 RMI$l_scs_dgsent ! Application datagrams sent INTEGER*4 RMI$l_scs_dgrcvd ! Application datagrams received INTEGER*4 RMI$l_scs_dgdiscard ! Application datagrams discarded INTEGER*4 RMI$l_scs_msgsent ! Application messages sent INTEGER*4 RMI$l_scs_msgrcvd ! Application messages received INTEGER*4 RMI$l_scs_snddats ! Block send datas initiated INTEGER*4 RMI$l_scs_kbytsent ! Kbytes sent via send datas INTEGER*4 RMI$l_scs_reqdats ! Block request datas initiated INTEGER*4 RMI$l_scs_kbytreqd ! Kbytes received via request datas INTEGER*4 RMI$l_scs_kbytmapd ! Kbytes mapped for block transfers INTEGER*4 RMI$l_scs_qcr_cnt ! Times connection queued for send credit INTEGER*4 RMI$l_scs_qbdt_cnt ! Times connection queued for buffer descriptor END STRUCTURE ! rmi$scs_offsets PARAMETER RMI$c_scs_minsize = '00000038'X ! Size of one collection block for scs class STRUCTURE /rmi$disk_offsets/ ! DISK class information for ! current revision level INTEGER*2 RMI$w_disk_alloclass ! Allocation class INTEGER*4 RMI$l_disk_devname ! Device name INTEGER*2 RMI$w_disk_unitnum ! Unit number BYTE RMI$b_disk_flags ! Flags byte (low bit indicates served disk INTEGER*4 RMI$q_disk_nodename(2) ! Nodename INTEGER*4 RMI$q_disk_volnamel(2) ! Volume name (low) INTEGER*4 RMI$l_disk_volnameh ! Volume name (high) INTEGER*4 RMI$l_disk_optcnt ! Operation count INTEGER*4 RMI$l_disk_qcount ! Queue length accumulator END STRUCTURE ! rmi$disk_offsets PARAMETER RMI$c_disk_minsize = '00000025'X ! Size of one block STRUCTURE /rmi$disk_offsets_rev4/ ! DISK class information ! for "revision level 4" BYTE RMI$b_disk_alloclass_rev4 ! Allocation class INTEGER*4 RMI$l_disk_devname_rev4 ! Device name INTEGER*2 RMI$w_disk_unitnum_rev4 ! Unit number BYTE RMI$b_disk_flags_rev4 ! Flags byte (low bit indicates served disk INTEGER*4 RMI$q_disk_nodename_rev4(2) ! Nodename INTEGER*4 RMI$q_disk_volnamel_rev4(2) ! Volume name (low) INTEGER*4 RMI$l_disk_volnameh_rev4 ! Volume name (high) INTEGER*4 RMI$l_disk_optcnt_rev4 ! Operation count INTEGER*4 RMI$l_disk_qcount_rev4 ! Queue length accumulator END STRUCTURE ! rmi$disk_offsets_rev4 PARAMETER RMI$c_disk_minsize_rev4 = '00000024'X ! Size of one block STRUCTURE /rmi$proc_class/ ! PROCESSES Class Data Block INTEGER*4 RMI$l_proc_ipid ! Internal PID INTEGER*4 RMI$l_proc_uic ! UIC (Member is low-order word) INTEGER*2 RMI$w_proc_state ! State value BYTE RMI$b_proc_pri ! Priority (negative value) INTEGER*4 RMI$o_proc_lname(4) ! Process name (counted string) INTEGER*4 RMI$l_proc_gpgcnt ! Global page count INTEGER*4 RMI$l_proc_ppgcnt ! Process page count INTEGER*4 RMI$l_proc_sts ! PCB Status Vector ! (PCB$V_RES bit clear => swapped out) INTEGER*4 RMI$l_proc_diocnt ! Direct I/O count INTEGER*4 RMI$l_proc_pageflts ! Page fault count INTEGER*4 RMI$l_proc_cputim ! Accumulated CPU time (in ticks) INTEGER*4 RMI$l_proc_biocnt ! Buffered I/O count INTEGER*4 RMI$l_proc_epid ! Extended PID INTEGER*4 RMI$l_proc_efwm ! Event flag wait mask (for MWAITs) INTEGER*4 RMI$l_proc_rbstran ! Real balance slot transitions ! Size of process data block END STRUCTURE ! rmi$proc_class PARAMETER RMI$c_proc_minsize = '00000043'X !DEC$ END OPTIONS